Trait

akka.persistence.inmemory.journal

InMemoryAsyncWriteJournalLike

Related Doc: package journal

Permalink

trait InMemoryAsyncWriteJournalLike extends AsyncWriteJournal with AllPersistenceIdsSubscriberRegistry with EventsByPersistenceIdRegistry with EventsByTagSubscriberRegistry with EventsByPersistenceIdTagSubscriberRegistry

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InMemoryAsyncWriteJournalLike
  2. EventsByPersistenceIdTagSubscriberRegistry
  3. EventsByTagSubscriberRegistry
  4. EventsByPersistenceIdRegistry
  5. AllPersistenceIdsSubscriberRegistry
  6. AsyncWriteJournal
  7. AsyncRecovery
  8. WriteJournalBase
  9. Actor
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor

Abstract Value Members

  1. implicit abstract def ec: ExecutionContext

    Permalink
  2. abstract def journalDao: JournalDao

    Permalink
  3. implicit abstract def mat: Materializer

    Permalink
  4. abstract def serializationFacade: SerializationFacade

    Permalink

Concrete Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addAllPersistenceIdsFlow(persistenceIdsNotInJournal: List[String]): Flow[Try[Iterable[Serialized]], Try[Iterable[Serialized]], NotUsed]

    Permalink
    Attributes
    protected
    Definition Classes
    AllPersistenceIdsSubscriberRegistry
  5. def aroundPostRestart(reason: Throwable): Unit

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

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

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

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  9. def aroundReceive(receive: actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def asyncDeleteMessagesTo(persistenceId: String, toSequenceNr: Long): Future[Unit]

    Permalink
    Definition Classes
    InMemoryAsyncWriteJournalLike → AsyncWriteJournal
  12. def asyncReadHighestSequenceNr(persistenceId: String, fromSequenceNr: Long): Future[Long]

    Permalink
    Definition Classes
    InMemoryAsyncWriteJournalLike → AsyncRecovery
  13. def asyncReplayMessages(persistenceId: String, fromSequenceNr: Long, toSequenceNr: Long, max: Long)(recoveryCallback: (PersistentRepr) ⇒ Unit): Future[Unit]

    Permalink
    Definition Classes
    InMemoryAsyncWriteJournalLike → AsyncRecovery
  14. def asyncWriteMessages(messages: Seq[AtomicWrite]): Future[Seq[Try[Unit]]]

    Permalink
    Definition Classes
    InMemoryAsyncWriteJournalLike → AsyncWriteJournal
  15. def clone(): AnyRef

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. def eventsByPersistenceIdAndTagFlow(atomicWrites: Iterable[AtomicWrite]): Flow[Try[Iterable[Serialized]], Try[Iterable[Serialized]], NotUsed]

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdTagSubscriberRegistry
  20. def eventsByPersistenceIdFlow(atomicWrites: Iterable[AtomicWrite]): Flow[Try[Iterable[Serialized]], Try[Iterable[Serialized]], NotUsed]

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdRegistry
  21. def eventsByTagFlow(atomicWrites: Iterable[AtomicWrite]): Flow[Try[Iterable[Serialized]], Try[Iterable[Serialized]], NotUsed]

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByTagSubscriberRegistry
  22. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def handleTerminated: Receive

    Permalink
  25. def hasAllPersistenceIdsSubscribers: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    AllPersistenceIdsSubscriberRegistry
  26. def hasEventsByPersistenceIdSubscribers: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdRegistry
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. val persistence: Persistence

    Permalink
    Definition Classes
    WriteJournalBase
  33. def postRestart(reason: Throwable): Unit

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

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  35. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  36. def preStart(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  37. def preparePersistentBatch(rb: Seq[PersistentEnvelope]): Seq[AtomicWrite]

    Permalink
    Attributes
    protected
    Definition Classes
    WriteJournalBase
  38. final def receive: PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    AsyncWriteJournal → Actor
  39. def receiveAllPersistenceIdsSubscriber: actor.Actor.Receive

    Permalink
    Attributes
    protected
    Definition Classes
    AllPersistenceIdsSubscriberRegistry
  40. def receiveEventsByPersistenceIdAndTagRegistry: actor.Actor.Receive

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdTagSubscriberRegistry
  41. def receiveEventsByPersistenceIdRegistry: actor.Actor.Receive

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdRegistry
  42. def receiveEventsByTagRegistry: actor.Actor.Receive

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByTagSubscriberRegistry
  43. def receivePluginInternal: Receive

    Permalink
    Definition Classes
    InMemoryAsyncWriteJournalLike → AsyncWriteJournal
  44. final val receiveWriteJournal: actor.Actor.Receive

    Permalink
    Definition Classes
    AsyncWriteJournal
  45. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  46. def sendAllPersistenceIdsSubscriberTerminated(ref: ActorRef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    AllPersistenceIdsSubscriberRegistry
  47. def sendEventsByPersistenceIdAndTagSubscriberTerminated(ref: ActorRef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdTagSubscriberRegistry
  48. def sendEventsByPersistenceIdSubscriberTerminated(ref: ActorRef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByPersistenceIdRegistry
  49. def sendEventsByTagSubscriberTerminated(ref: ActorRef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    EventsByTagSubscriberRegistry
  50. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  51. def subscriberKey(persistenceId: String, tag: String): String

    Permalink
  52. def supervisorStrategy: SupervisorStrategy

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

    Permalink
    Definition Classes
    AnyRef
  54. def toString(): String

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

    Permalink
    Definition Classes
    Actor
  56. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AsyncWriteJournal

Inherited from AsyncRecovery

Inherited from WriteJournalBase

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped