akka.actor
Class Props.EmptyActor

java.lang.Object
  extended by akka.actor.Props.EmptyActor
All Implemented Interfaces:
Actor
Enclosing class:
Props

public static class Props.EmptyActor
extends java.lang.Object
implements Actor

INTERNAL API

(Not because it is so immensely complicated, only because we might remove it if no longer needed internally)


Nested Class Summary
 
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$
 
Constructor Summary
Props.EmptyActor()
           
 
Method Summary
 Actor.emptyBehavior$ 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
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, context, postRestart, postStop, preRestart, preStart, self, sender, supervisorStrategy, unhandled
 

Constructor Detail

Props.EmptyActor

public Props.EmptyActor()
Method Detail

receive

public Actor.emptyBehavior$ 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
Returns:
(undocumented)