Merge pull request #1500 from akka/wip-3210-local-only-∂π

make LocalScope mean “purely local” and avoid Props serialization check,...
This commit is contained in:
Roland Kuhn 2013-05-30 08:03:32 -07:00
commit 8df8541801
52 changed files with 218 additions and 133 deletions

View file

@ -92,7 +92,7 @@ public class SslDocTest {
// create handler for pipeline, setting ourselves as payload recipient
final ActorRef handler = getContext().actorOf(
TcpPipelineHandler.create(init, getSender(), getSelf()));
TcpPipelineHandler.props(init, getSender(), getSelf()));
// register the SSL handler with the connection
getSender().tell(TcpMessage.register(handler), getSelf());
@ -157,7 +157,7 @@ public class SslDocTest {
// create handler for pipeline, setting ourselves as payload recipient
final ActorRef handler = getContext().actorOf(
TcpPipelineHandler.create(init, getSender(), getSelf()));
TcpPipelineHandler.props(init, getSender(), getSelf()));
// register the SSL handler with the connection
getSender().tell(TcpMessage.register(handler), getSelf());