Merge pull request #2090 from akka/wip-remoting-multi-fix-∂π

Wip remoting multi fix ∂π (broken commits apart properly)
This commit is contained in:
Roland Kuhn 2014-03-22 15:19:45 +01:00
commit bf2bf24c4a
19 changed files with 460 additions and 132 deletions

View file

@ -74,7 +74,10 @@ object TestkitDocSpec {
//#logging-receive
import akka.event.LoggingReceive
def receive = LoggingReceive {
case msg => // Do something...
case msg => // Do something ...
}
def otherState: Receive = LoggingReceive.withLabel("other") {
case msg => // Do something else ...
}
//#logging-receive
}