Trait

akka.persistence.jdbc.journal

SlickAsyncWriteJournal

Related Doc: package journal

Permalink

trait SlickAsyncWriteJournal extends AsyncWriteJournal with AllPersistenceIdsSubscriberRegistry with EventsByPersistenceIdRegistry

Linear Supertypes
EventsByPersistenceIdRegistry, AllPersistenceIdsSubscriberRegistry, AsyncWriteJournal, AsyncRecovery, WriteJournalBase, Actor, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SlickAsyncWriteJournal
  2. EventsByPersistenceIdRegistry
  3. AllPersistenceIdsSubscriberRegistry
  4. AsyncWriteJournal
  5. AsyncRecovery
  6. WriteJournalBase
  7. Actor
  8. AnyRef
  9. 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]], Unit]

    Permalink
  5. def addAllPersistenceIdsSubscriber(subscriber: ActorRef): Unit

    Permalink
  6. def addEventsByPersistenceIdSubscribers(subscriber: ActorRef, persistenceId: String): Unit

    Permalink
  7. var allPersistenceIdsSubscribers: Set[ActorRef]

    Permalink
  8. def aroundPostRestart(reason: Throwable): Unit

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    SlickAsyncWriteJournal → AsyncWriteJournal
  18. def clone(): AnyRef

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def eventsByPersistenceIdFlow(atomicWrites: Iterable[AtomicWrite]): Flow[Try[Iterable[Serialized]], Try[Iterable[Serialized]], Unit]

    Permalink
  23. val eventsByPersistenceIdSubscribers: HashMap[String, Set[ActorRef]] with MultiMap[String, ActorRef]

    Permalink
  24. def finalize(): Unit

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

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

    Permalink
  27. def hasAllPersistenceIdsSubscribers: Boolean

    Permalink
  28. def hasEventsByPersistenceIdSubscribers: Boolean

    Permalink
  29. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  32. def newPersistenceIdAdded(id: String): Unit

    Permalink
  33. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  35. val persistence: Persistence

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

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

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

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

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

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

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

    Permalink
  43. def receiveEventsByPersistenceIdRegistry: actor.Actor.Receive

    Permalink
  44. def receivePluginInternal: Receive

    Permalink
    Definition Classes
    SlickAsyncWriteJournal → AsyncWriteJournal
  45. final val receiveWriteJournal: actor.Actor.Receive

    Permalink
    Definition Classes
    AsyncWriteJournal
  46. def removeAllPersistenceIdsSubscriber(subscriber: ActorRef): Unit

    Permalink
  47. def removeEventsByPersistenceIdSubscribers(subscriber: ActorRef): Unit

    Permalink
  48. implicit final val self: ActorRef

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

    Permalink
  50. def sendEventsByPersistenceIdSubscriberTerminated(ref: ActorRef): Unit

    Permalink
  51. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  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