akka.contrib.pattern
Class ReliableProxy.Receiver

java.lang.Object
  extended by akka.contrib.pattern.ReliableProxy.Receiver
All Implemented Interfaces:
Actor, ActorLogging
Enclosing class:
ReliableProxy

public static class ReliableProxy.Receiver
extends java.lang.Object
implements Actor, ActorLogging


Nested Class Summary
 
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$
 
Constructor Summary
ReliableProxy.Receiver(ActorRef target)
           
 
Method Summary
 int lastSerial()
           
 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
 
Methods inherited from interface akka.actor.ActorLogging
log
 

Constructor Detail

ReliableProxy.Receiver

public ReliableProxy.Receiver(ActorRef target)
Method Detail

lastSerial

public int lastSerial()

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