akka.persistence
Class ReliableDelivery

java.lang.Object
  extended by akka.persistence.ReliableDelivery
All Implemented Interfaces:
Actor

public class ReliableDelivery
extends java.lang.Object
implements Actor

Reliably deliver messages contained in Deliver requests to their destinations. Unconfirmed messages are redelivered according to the parameters in ChannelSettings.


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

Constructor Detail

ReliableDelivery

public ReliableDelivery(ChannelSettings redeliverSettings)
Method Detail

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
Returns:
(undocumented)