public interface Eventsourced extends Snapshotter, PersistenceStash, PersistenceIdentity, PersistenceRecovery
Scala API and implementation details of PersistentActor, AbstractPersistentActor and
UntypedPersistentActor.
| Modifier and Type | Interface and Description |
|---|---|
static class |
Eventsourced.AsyncHandlerInvocation
does not force the actor to stash commands; Originates from either `persistAsync` or `defer` calls
|
static class |
Eventsourced.AsyncHandlerInvocation$ |
static interface |
Eventsourced.PendingHandlerInvocation |
private static class |
Eventsourced.ProcessingState |
static class |
Eventsourced.RecoveryTick
message used to detect that recovery timed out
|
static class |
Eventsourced.RecoveryTick$ |
static class |
Eventsourced.StashingHandlerInvocation
forces actor to stash incoming commands until all these invocations are handled
|
static class |
Eventsourced.StashingHandlerInvocation$ |
static interface |
Eventsourced.State |
Actor.emptyBehavior$, Actor.ignoringBehavior$| Modifier and Type | Method and Description |
|---|---|
void |
aroundPostRestart(java.lang.Throwable reason)
INTERNAL API.
|
void |
aroundPostStop()
INTERNAL API.
|
void |
aroundPreRestart(java.lang.Throwable reason,
scala.Option<java.lang.Object> message)
INTERNAL API.
|
void |
aroundPreStart()
INTERNAL API.
|
void |
aroundReceive(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive,
java.lang.Object message)
INTERNAL API.
|
void |
changeState(Eventsourced.State state) |
<A> void |
deferAsync(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Defer the handler execution until all pending handlers have been executed.
|
void |
deleteMessages(long toSequenceNr)
Permanently deletes all persistent messages with sequence numbers less than or equal
toSequenceNr. |
void |
flushBatch() |
void |
flushJournalBatch() |
ActorRef |
journal() |
long |
lastSequenceNr()
Highest received sequence number so far or
0L if this actor hasn't replayed
or stored any persistent events yet. |
LoggingAdapter |
log() |
long |
nextSequenceNr() |
void |
onPersistFailure(java.lang.Throwable cause,
java.lang.Object event,
long seqNr)
Called when persist fails.
|
void |
onPersistRejected(java.lang.Throwable cause,
java.lang.Object event,
long seqNr)
Called when the journal rejected
persist of an event. |
void |
onRecoveryFailure(java.lang.Throwable cause,
scala.Option<java.lang.Object> event)
Called whenever a message replay fails.
|
void |
onReplaySuccess()
INTERNAL API.
|
void |
peekApplyHandler(java.lang.Object payload) |
<A> void |
persist(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Asynchronously persists
event. |
<A> void |
persist(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Deprecated.
use persistAll instead. Since 2.4.
|
<A> void |
persistAll(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Asynchronously persists
events in specified order. |
<A> void |
persistAllAsync(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Asynchronously persists
events in specified order. |
<A> void |
persistAsync(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Asynchronously persists
event. |
<A> void |
persistAsync(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
Deprecated.
use persistAllAsync instead. Since 2.4.
|
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> |
receiveCommand()
Command handler.
|
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> |
receiveRecover()
Recovery handler that receives persisted events during recovery.
|
java.lang.Object |
recovering(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> recoveryBehavior,
scala.concurrent.duration.FiniteDuration timeout) |
boolean |
recoveryFinished()
Returns
true if this persistent actor has successfully finished recovery. |
boolean |
recoveryRunning()
Returns
true if this persistent actor is currently recovering. |
java.lang.Object |
recoveryStarted(long replayMax) |
void |
requestRecoveryPermit() |
void |
setLastSequenceNr(long value) |
long |
snapshotSequenceNr()
Returns
lastSequenceNr. |
ActorRef |
snapshotStore()
Snapshot store plugin actor.
|
java.lang.String |
snapshotterId()
Returns
persistenceId. |
void |
startRecovery(Recovery recovery) |
void |
stashInternally(java.lang.Object currMsg) |
void |
unhandled(java.lang.Object message)
User overridable callback.
|
void |
unstashAll()
Prepends all messages in the stash to the mailbox, and then clears the stash.
|
void |
unstashInternally(boolean all) |
void |
updateLastSequenceNr(PersistentRepr persistent) |
java.lang.Object |
waitingRecoveryPermit(Recovery recovery) |
deleteSnapshot, deleteSnapshots, loadSnapshot, saveSnapshotinternalStashOverflowStrategycontext, postRestart, preStart, receive, self, sender, supervisorStrategyactorCell, clearStash, context, enqueueFirst, mailbox, prepend, self, stash, unstash, unstashAllcreateStashjournalPluginId, persistenceId, snapshotPluginIdrecoveryActorRef journal()
ActorRef snapshotStore()
SnapshottersnapshotStore in interface Snapshotterjava.lang.String snapshotterId()
persistenceId.snapshotterId in interface Snapshotterlong lastSequenceNr()
0L if this actor hasn't replayed
or stored any persistent events yet.long snapshotSequenceNr()
lastSequenceNr.snapshotSequenceNr in interface Snapshottervoid onReplaySuccess()
void onRecoveryFailure(java.lang.Throwable cause,
scala.Option<java.lang.Object> event)
Subclass may override to customize logging.
The actor is always stopped after this method has been invoked.
cause - failure cause.event - the event that was processed in receiveRecover, if the exception
was thrown therevoid onPersistFailure(java.lang.Throwable cause,
java.lang.Object event,
long seqNr)
The actor is always stopped after this method has been invoked.
Note that the event may or may not have been saved, depending on the type of failure.
cause - failure cause.event - the event that was to be persistedseqNr - (undocumented)void onPersistRejected(java.lang.Throwable cause,
java.lang.Object event,
long seqNr)
persist of an event. The event was not
stored. By default this method logs the problem as a warning, and the actor continues.
The callback handler that was passed to the persist method will not be invoked.
cause - failure causeevent - the event that was to be persistedseqNr - (undocumented)void stashInternally(java.lang.Object currMsg)
void unstashInternally(boolean all)
void startRecovery(Recovery recovery)
void aroundReceive(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive,
java.lang.Object message)
aroundReceive in interface Actorreceive - current behavior.message - current message.void aroundPreStart()
aroundPreStart in interface Actorvoid requestRecoveryPermit()
void aroundPreRestart(java.lang.Throwable reason,
scala.Option<java.lang.Object> message)
aroundPreRestart in interface Actorreason - (undocumented)message - (undocumented)void aroundPostRestart(java.lang.Throwable reason)
aroundPostRestart in interface Actorreason - (undocumented)void aroundPostStop()
aroundPostStop in interface Actorvoid unhandled(java.lang.Object message)
ActorDeathPactException (in
case of an unhandled Terminated message) or publishes an UnhandledMessage
to the actor's system's EventStreamvoid changeState(Eventsourced.State state)
void updateLastSequenceNr(PersistentRepr persistent)
void setLastSequenceNr(long value)
long nextSequenceNr()
void flushJournalBatch()
LoggingAdapter log()
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receiveRecover()
SnapshotOffer message
followed by events that are younger than the offered snapshot.
This handler must not have side-effects other than changing persistent actor state i.e. it should not perform actions that may fail, such as interacting with external services, for example.
If there is a problem with recovering the state of the actor from the journal, the error will be logged and the actor will be stopped.
Recoveryscala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receiveCommand()
persist.<A> void persist(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
event. On successful persistence, handler is called with the
persisted event. It is guaranteed that no new commands will be received by a persistent actor
between a call to persist and the execution of its handler. This also holds for
multiple persist calls per received command. Internally, this is achieved by stashing new
commands and unstashing them when the event has been persisted and handled. The stash used
for that is an internal stash which doesn't interfere with the inherited user stash.
An event handler may close over persistent actor state and modify it. The sender of a persisted
event is the sender of the corresponding command. This means that one can reply to a command
sender within an event handler.
Within an event handler, applications usually update persistent actor state using persisted event data, notify listeners and reply to command senders.
If persistence of an event fails, onPersistFailure(java.lang.Throwable, java.lang.Object, long) will be invoked and the actor will
unconditionally be stopped. The reason that it cannot resume when persist fails is that it
is unknown if the even was actually persisted or not, and therefore it is in an inconsistent
state. Restarting on persistent failures will most likely fail anyway, since the journal
is probably unavailable. It is better to stop the actor and after a back-off timeout start
it again.
event - event to be persistedhandler - handler for each persisted event<A> void persistAll(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
events in specified order. This is equivalent to calling
persist[A](event: A)(handler: A => Unit) multiple times with the same handler,
except that events are persisted atomically with this method.
events - events to be persistedhandler - handler for each persisted events<A> void persist(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
<A> void persistAsync(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
event. On successful persistence, handler is called with the
persisted event.
Unlike persist the persistent actor will continue to receive incoming commands between the
call to persist and executing it's handler. This asynchronous, non-stashing, version of
of persist should be used when you favor throughput over the "command-2 only processed after
command-1 effects' have been applied" guarantee, which is provided by the plain persist method.
An event handler may close over persistent actor state and modify it. The sender of a persisted
event is the sender of the corresponding command. This means that one can reply to a command
sender within an event handler.
If persistence of an event fails, onPersistFailure(java.lang.Throwable, java.lang.Object, long) will be invoked and the actor will
unconditionally be stopped. The reason that it cannot resume when persist fails is that it
is unknown if the even was actually persisted or not, and therefore it is in an inconsistent
state. Restarting on persistent failures will most likely fail anyway, since the journal
is probably unavailable. It is better to stop the actor and after a back-off timeout start
it again.
event - event to be persistedhandler - handler for each persisted event<A> void persistAllAsync(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
events in specified order. This is equivalent to calling
persistAsync[A](event: A)(handler: A => Unit) multiple times with the same handler,
except that events are persisted atomically with this method.
events - events to be persistedhandler - handler for each persisted events<A> void persistAsync(scala.collection.immutable.Seq<A> events,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
<A> void deferAsync(A event,
scala.Function1<A,scala.runtime.BoxedUnit> handler)
persistAsync calls. That is, if persistAsync was invoked before deferAsync,
the corresponding handlers will be invoked in the same order as they were registered in.
This call will NOT result in event being persisted, use persist or persistAsync instead
if the given event should possible to replay.
If there are no pending persist handler calls, the handler will be called immediately.
If persistence of an earlier event fails, the persistent actor will stop, and the handler
will not be run.
event - event to be handled in the future, when preceding persist operations have been processeshandler - handler for the given eventvoid deleteMessages(long toSequenceNr)
toSequenceNr.
If the delete is successful a DeleteMessagesSuccess will be sent to the actor.
If the delete fails a DeleteMessagesFailure will be sent to the actor.
toSequenceNr - upper sequence number bound of persistent messages to be deleted.boolean recoveryRunning()
true if this persistent actor is currently recovering.boolean recoveryFinished()
true if this persistent actor has successfully finished recovery.void unstashAll()
StashSupport
Messages from the stash are enqueued to the mailbox until the capacity of the
mailbox (if any) has been reached. In case a bounded mailbox overflows, a
MessageQueueAppendFailedException is thrown.
The stash is guaranteed to be empty after calling unstashAll().
unstashAll in interface StashSupportjava.lang.Object waitingRecoveryPermit(Recovery recovery)
java.lang.Object recoveryStarted(long replayMax)
java.lang.Object recovering(scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> recoveryBehavior,
scala.concurrent.duration.FiniteDuration timeout)
void flushBatch()
void peekApplyHandler(java.lang.Object payload)