object EmptyDurableStateBehaviorInstrumentation extends EmptyDurableStateBehaviorInstrumentation
INTERNAL API
- Annotations
- @InternalStableApi()
- Source
- DurableStateBehaviorInstrumentation.scala
- Alphabetic
- By Inheritance
- EmptyDurableStateBehaviorInstrumentation
- EmptyDurableStateBehaviorInstrumentation
- DurableStateBehaviorInstrumentation
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def actorInitialized(actorRef: ActorRef[_]): Unit
Initialize state for an EventSourcedBehavior actor.
Initialize state for an EventSourcedBehavior actor.
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def afterRequestRecoveryPermit(actorRef: ActorRef[_], context: Context): Unit
Record after a recovery permit is requested.
Record after a recovery permit is requested.
- actorRef
the
ActorRef
for which the recovery permit is requested- context
returned by
beforeRequestRecoveryPermit
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def beforeRequestRecoveryPermit(actorRef: ActorRef[_]): Context
Record before a recovery permit is requested.
Record before a recovery permit is requested.
- actorRef
the
ActorRef
for which the recovery permit is about to be requested- returns
context that will be passed to
afterRequestRecoveryPermit
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def deleteStateCalled(actorRef: ActorRef[_], command: Any): Context
Record delete state.
Record delete state.
- actorRef
the
ActorRef
for which the delete state will be sent to the store.- command
actor message (command) for which the state update was emitted.
- returns
context that will be passed to
persistStateWritten
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def dependencies: Seq[String]
Optional dependencies for this instrumentation.
Optional dependencies for this instrumentation.
Dependency instrumentations will always be ordered before this instrumentation.
- returns
list of class names for optional instrumentation dependencies
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def persistFailed(actorRef: ActorRef[_], throwable: Throwable, state: Any, revision: Long, context: Context): Unit
Record persistence persist failure.
Record persistence persist failure.
- actorRef
the
ActorRef
for which the recovery has failed.- throwable
the cause of the failure.
- state
the state that was to be persisted.
- revision
the sequence number associated with the failure
- context
context returned by
persistStateCalled
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def persistStateCalled(actorRef: ActorRef[_], state: Any, command: Any): Context
Record persist state.
Record persist state.
- actorRef
the
ActorRef
for which the state will be sent to the store.- state
the state that was submitted for persistence.
- command
actor message (command) for which the state update was emitted.
- returns
context that will be passed to
persistStateWritten
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def persistStateDone(actorRef: ActorRef[_], context: Context): Unit
Record state is written and the registered callback is called.
Record state is written and the registered callback is called.
- actorRef
the
ActorRef
for which the state has been successfully persisted.- context
context returned by
persistStateWritten
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def persistStateWritten(actorRef: ActorRef[_], state: Any, context: Context): Context
Record state is written but the registered callback has not been called yet
Record state is written but the registered callback has not been called yet
- actorRef
the
ActorRef
for which the state has been successfully persisted.- state
the state that was stored in the journal.
- context
context returned by
persistStateCalled
- returns
context that will be passed to
persistStateDone
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def recoveryDone(actorRef: ActorRef[_]): Unit
Record persistence recovery done.
Record persistence recovery done.
- actorRef
the
ActorRef
for which the recovery is finished.
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def recoveryFailed(actorRef: ActorRef[_], throwable: Throwable): Unit
Record persistence recovery failure.
Record persistence recovery failure.
- actorRef
the
ActorRef
for which the recovery has failed.- throwable
the cause of the failure.
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- def recoveryStarted(actorRef: ActorRef[_]): Unit
Record persistence recovery started.
Record persistence recovery started.
- actorRef
the
ActorRef
for which the recovery is started.
- Definition Classes
- EmptyDurableStateBehaviorInstrumentation → DurableStateBehaviorInstrumentation
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])