no.nextgentel.oss.akkatools.persistence

EnhancedPersistentView

Related Doc: package persistence

abstract class EnhancedPersistentView[E, S] extends PersistentView with ActorLogging

Linear Supertypes
ActorLogging, PersistentView, Recovery, StashFactory, Stash, RequiresMessageQueue[DequeBasedMessageQueueSemantics], UnrestrictedStash, StashSupport, Snapshotter, Actor, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. EnhancedPersistentView
  2. ActorLogging
  3. PersistentView
  4. Recovery
  5. StashFactory
  6. Stash
  7. RequiresMessageQueue
  8. UnrestrictedStash
  9. StashSupport
  10. Snapshotter
  11. Actor
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EnhancedPersistentView(persistenceIdBase: String, id: String, collectHistory: Boolean = true)(implicit arg0: ClassTag[E], arg1: ClassTag[S])

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Definition Classes
    Actor

Abstract Value Members

  1. abstract def applyEventToState(event: E): Unit

  2. abstract def currentState(): S

  3. abstract val onCmd: PartialFunction[AnyRef, Unit]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def aroundPostRestart(reason: Throwable): Unit

    Attributes
    protected[akka]
    Definition Classes
    Actor
  5. def aroundPostStop(): Unit

    Attributes
    protected[akka]
    Definition Classes
    Actor
  6. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Attributes
    protected[akka]
    Definition Classes
    Actor
  7. def aroundPreStart(): Unit

    Attributes
    protected[akka]
    Definition Classes
    Actor
  8. def aroundReceive(receive: Receive, message: Any): Unit

    Attributes
    protected[akka]
    Definition Classes
    Recovery → Actor
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def autoUpdate: Boolean

    Definition Classes
    PersistentView
  11. def autoUpdateInterval: FiniteDuration

    Definition Classes
    PersistentView
  12. def autoUpdateReplayMax: Long

    Definition Classes
    PersistentView
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. implicit val context: ActorContext

    Definition Classes
    Actor
  15. def deleteSnapshot(sequenceNr: Long, timestamp: Long): Unit

    Definition Classes
    Snapshotter
  16. def deleteSnapshots(criteria: SnapshotSelectionCriteria): Unit

    Definition Classes
    Snapshotter
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. var history: List[EventAndState]

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def isPersistent: Boolean

    Definition Classes
    PersistentView
  25. def lastSequenceNr: Long

    Definition Classes
    Recovery
  26. def loadSnapshot(persistenceId: String, criteria: SnapshotSelectionCriteria, toSequenceNr: Long): Unit

    Definition Classes
    Snapshotter
  27. def log: LoggingAdapter

    Definition Classes
    ActorLogging
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def persistenceId: String

    Definition Classes
    EnhancedPersistentView → Recovery
  32. def postRestart(reason: Throwable): Unit

    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  33. def postStop(): Unit

    Definition Classes
    PersistentView → UnrestrictedStash → Actor
  34. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Definition Classes
    PersistentView → UnrestrictedStash → Actor
  35. def preStart(): Unit

    Definition Classes
    PersistentView → Actor
  36. def receive: PartialFunction[Any, Unit]

    Definition Classes
    EnhancedPersistentView → Actor
  37. def saveSnapshot(snapshot: Any): Unit

    Definition Classes
    Snapshotter
  38. implicit final val self: ActorRef

    Definition Classes
    Actor
  39. final def sender(): ActorRef

    Definition Classes
    Actor
  40. def snapshotSequenceNr: Long

    Definition Classes
    Recovery → Snapshotter
  41. def snapshotterId: String

    Definition Classes
    PersistentView → Snapshotter
  42. def stash(): Unit

    Definition Classes
    StashSupport
  43. def supervisorStrategy: SupervisorStrategy

    Definition Classes
    Actor
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def toString(): String

    Definition Classes
    AnyRef → Any
  46. def unhandled(message: Any): Unit

    Definition Classes
    Actor
  47. def unstashAll(): Unit

    Definition Classes
    StashSupport
  48. def viewId: String

    Definition Classes
    EnhancedPersistentView → PersistentView
  49. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. implicit def currentPersistentMessage: Option[Persistent]

    Definition Classes
    Recovery
    Annotations
    @deprecated
    Deprecated

    (Since version 2.3.4) currentPersistentMessage will be removed, sequence number can be retrieved with lastSequenceNr.

  2. def getCurrentPersistentMessage: Persistent

    Definition Classes
    Recovery
    Annotations
    @deprecated
    Deprecated

    (Since version 2.3.4) getCurrentPersistentMessage will be removed, sequence number can be retrieved with lastSequenceNr.

  3. def processorId: String

    Definition Classes
    Recovery
    Annotations
    @deprecated
    Deprecated

    (Since version 2.3.4) Override persistenceId instead. Processor will be removed.

Inherited from ActorLogging

Inherited from PersistentView

Inherited from Recovery

Inherited from StashFactory

Inherited from Stash

Inherited from RequiresMessageQueue[DequeBasedMessageQueueSemantics]

Inherited from UnrestrictedStash

Inherited from StashSupport

Inherited from Snapshotter

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped