class EmptyEventSourcedBehaviorInstrumentation extends EventSourcedBehaviorInstrumentation

INTERNAL API

Annotations
@InternalStableApi()
Source
EventSourcedBehaviorInstrumentation.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EmptyEventSourcedBehaviorInstrumentation
  2. EventSourcedBehaviorInstrumentation
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EmptyEventSourcedBehaviorInstrumentation(system: ActorSystem[_])
  2. new EmptyEventSourcedBehaviorInstrumentation()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toany2stringadd[EmptyEventSourcedBehaviorInstrumentation] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (EmptyEventSourcedBehaviorInstrumentation, B)
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toArrowAssoc[EmptyEventSourcedBehaviorInstrumentation] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def actorInitialized(actorRef: ActorRef[_]): Unit

    Initialize state for an EventSourcedBehavior actor.

    Initialize state for an EventSourcedBehavior actor.

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  7. 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
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. 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
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  11. 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
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  12. def ensuring(cond: (EmptyEventSourcedBehaviorInstrumentation) => Boolean, msg: => Any): EmptyEventSourcedBehaviorInstrumentation
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toEnsuring[EmptyEventSourcedBehaviorInstrumentation] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (EmptyEventSourcedBehaviorInstrumentation) => Boolean): EmptyEventSourcedBehaviorInstrumentation
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toEnsuring[EmptyEventSourcedBehaviorInstrumentation] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): EmptyEventSourcedBehaviorInstrumentation
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toEnsuring[EmptyEventSourcedBehaviorInstrumentation] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): EmptyEventSourcedBehaviorInstrumentation
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toEnsuring[EmptyEventSourcedBehaviorInstrumentation] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. def persistEventCalled(actorRef: ActorRef[_], event: Any, command: Any): Context

    Record persist event.

    Record persist event.

    actorRef

    the ActorRef for which the event will be sent to the journal.

    event

    the event that was submitted for persistence. For persist of several events it will be called for each event in the batch in the same order.

    command

    actor message (command), if any (otherwise null), for which the event was emitted.

    returns

    context that will be passed to persistEventWritten

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  25. def persistEventDone(actorRef: ActorRef[_], context: Context): Unit

    Record event is written and the registered callback is called.

    Record event is written and the registered callback is called.

    actorRef

    the ActorRef for which the event has been successfully persisted.

    context

    context returned by persistEventWritten

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  26. def persistEventWritten(actorRef: ActorRef[_], event: Any, context: Context): Context

    Record event is written but the registered callback has not been called yet

    Record event is written but the registered callback has not been called yet

    actorRef

    the ActorRef for which the event has been successfully persisted.

    event

    the event that was stored in the journal.

    context

    context returned by persistEventCalled

    returns

    context that will be passed to persistEventDone

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  27. def persistFailed(actorRef: ActorRef[_], throwable: Throwable, event: Any, seqNr: 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.

    event

    the event that was to be persisted.

    seqNr

    the sequence number associated with the failure

    context

    context returned by persistEventCalled

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  28. def persistRejected(actorRef: ActorRef[_], throwable: Throwable, event: Any, seqNr: 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.

    event

    the event that was to be persisted.

    seqNr

    the sequence number associated with the failure

    context

    context returned by persistEventCalled

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  29. def recoveryDone(actorRef: ActorRef[_]): Unit

    Record persistence recovery done.

    Record persistence recovery done.

    actorRef

    the ActorRef for which the recovery is finished.

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  30. def recoveryFailed(actorRef: ActorRef[_], throwable: Throwable, event: Any): Unit

    Record persistence recovery failure.

    Record persistence recovery failure.

    actorRef

    the ActorRef for which the recovery has failed.

    throwable

    the cause of the failure.

    event

    the event that was replayed, if any (otherwise null)

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  31. def recoveryStarted(actorRef: ActorRef[_]): Unit

    Record persistence recovery started.

    Record persistence recovery started.

    actorRef

    the ActorRef for which the recovery is started.

    Definition Classes
    EmptyEventSourcedBehaviorInstrumentationEventSourcedBehaviorInstrumentation
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toStringFormat[EmptyEventSourcedBehaviorInstrumentation] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (EmptyEventSourcedBehaviorInstrumentation, B)
    Implicit
    This member is added by an implicit conversion from EmptyEventSourcedBehaviorInstrumentation toArrowAssoc[EmptyEventSourcedBehaviorInstrumentation] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromEmptyEventSourcedBehaviorInstrumentation to any2stringadd[EmptyEventSourcedBehaviorInstrumentation]

Inherited by implicit conversion StringFormat fromEmptyEventSourcedBehaviorInstrumentation to StringFormat[EmptyEventSourcedBehaviorInstrumentation]

Inherited by implicit conversion Ensuring fromEmptyEventSourcedBehaviorInstrumentation to Ensuring[EmptyEventSourcedBehaviorInstrumentation]

Inherited by implicit conversion ArrowAssoc fromEmptyEventSourcedBehaviorInstrumentation to ArrowAssoc[EmptyEventSourcedBehaviorInstrumentation]

Ungrouped