akka.testkit
Interface TestActorRefSpec.TActor

All Superinterfaces:
Actor
All Known Implementing Classes:
TestActorRefSpec.ReplyActor, TestActorRefSpec.SenderActor, TestActorRefSpec.WorkerActor
Enclosing class:
TestActorRefSpec

public static interface TestActorRefSpec.TActor
extends Actor


Nested Class Summary
 
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$
 
Method Summary
 java.lang.Object receive()
          This defines the initial actor behavior, it must return a partial function with the actor logic.
 scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receiveT()
           
 
Methods inherited from interface akka.actor.Actor
context, noSender, postRestart, postStop, preRestart, preStart, self, sender, supervisorStrategy, unhandled
 

Method Detail

receive

java.lang.Object 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

receiveT

scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receiveT()