2014-01-07 15:50:36 +01:00
|
|
|
package docs.io;
|
|
|
|
|
|
|
|
|
|
import akka.actor.ActorRef;
|
|
|
|
|
import akka.actor.Props;
|
|
|
|
|
import akka.actor.UntypedActor;
|
|
|
|
|
import akka.io.Inet;
|
|
|
|
|
import akka.io.Tcp;
|
|
|
|
|
import akka.io.TcpMessage;
|
|
|
|
|
import akka.util.ByteString;
|
|
|
|
|
|
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-07 22:58:48 -08:00
|
|
|
* Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
|
2014-01-07 15:50:36 +01:00
|
|
|
*/
|
|
|
|
|
public class JavaReadBackPressure {
|
|
|
|
|
|
|
|
|
|
static public class Listener extends UntypedActor {
|
|
|
|
|
ActorRef tcp;
|
|
|
|
|
ActorRef listener;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
//#pull-accepting
|
|
|
|
|
public void onReceive(Object message) throws Exception {
|
|
|
|
|
if (message instanceof Tcp.Bound) {
|
|
|
|
|
listener = getSender();
|
|
|
|
|
// Accept connections one by one
|
|
|
|
|
listener.tell(TcpMessage.resumeAccepting(1), getSelf());
|
|
|
|
|
} else if (message instanceof Tcp.Connected) {
|
|
|
|
|
ActorRef handler = getContext().actorOf(Props.create(PullEcho.class, getSender()));
|
|
|
|
|
getSender().tell(TcpMessage.register(handler), getSelf());
|
|
|
|
|
// Resume accepting connections
|
|
|
|
|
listener.tell(TcpMessage.resumeAccepting(1), getSelf());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//#pull-accepting
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void preStart() throws Exception {
|
|
|
|
|
//#pull-mode-bind
|
|
|
|
|
tcp = Tcp.get(getContext().system()).manager();
|
|
|
|
|
final List<Inet.SocketOption> options = new ArrayList<Inet.SocketOption>();
|
|
|
|
|
tcp.tell(
|
|
|
|
|
TcpMessage.bind(getSelf(), new InetSocketAddress("localhost", 0), 100, options, true),
|
|
|
|
|
getSelf()
|
|
|
|
|
);
|
|
|
|
|
//#pull-mode-bind
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void demonstrateConnect() {
|
|
|
|
|
//#pull-mode-connect
|
|
|
|
|
final List<Inet.SocketOption> options = new ArrayList<Inet.SocketOption>();
|
|
|
|
|
tcp.tell(
|
|
|
|
|
TcpMessage.connect(new InetSocketAddress("localhost", 3000), null, options, null, true),
|
|
|
|
|
getSelf()
|
|
|
|
|
);
|
|
|
|
|
//#pull-mode-connect
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public class Ack implements Tcp.Event {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static public class PullEcho extends UntypedActor {
|
|
|
|
|
final ActorRef connection;
|
|
|
|
|
|
|
|
|
|
public PullEcho(ActorRef connection) {
|
|
|
|
|
this.connection = connection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#pull-reading-echo
|
|
|
|
|
@Override
|
|
|
|
|
public void preStart() throws Exception {
|
|
|
|
|
connection.tell(TcpMessage.resumeReading(), getSelf());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onReceive(Object message) throws Exception {
|
|
|
|
|
if (message instanceof Tcp.Received) {
|
|
|
|
|
ByteString data = ((Tcp.Received) message).data();
|
|
|
|
|
connection.tell(TcpMessage.write(data, new Ack()), getSelf());
|
|
|
|
|
} else if (message instanceof Ack) {
|
|
|
|
|
connection.tell(TcpMessage.resumeReading(), getSelf());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//#pull-reading-echo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|