akka.testkit
Class TestActorRefSpec.Logger

java.lang.Object
  extended by akka.testkit.TestActorRefSpec.Logger
All Implemented Interfaces:
Actor
Enclosing class:
TestActorRefSpec

public static class TestActorRefSpec.Logger
extends java.lang.Object
implements Actor


Nested Class Summary
 
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$
 
Constructor Summary
TestActorRefSpec.Logger()
           
 
Method Summary
 int count()
           
 java.lang.String msg()
           
 scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
          This defines the initial actor behavior, it must return a partial function with the actor logic.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface akka.actor.Actor
context, noSender, postRestart, postStop, preRestart, preStart, self, sender, supervisorStrategy, unhandled
 

Constructor Detail

TestActorRefSpec.Logger

public TestActorRefSpec.Logger()
Method Detail

count

public int count()

msg

public java.lang.String msg()

receive

public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Description copied from interface: Actor
This defines the initial actor behavior, it must return a partial function with the actor logic.

Specified by:
receive in interface Actor