Trait

akka.persistence.pg.journal

ReadJournalStore

Related Doc: package journal

Permalink

trait ReadJournalStore extends JournalStore

Self Type
ReadJournalStore with PgConfig
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReadJournalStore
  2. JournalStore
  3. JournalTable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ExtraDBIOInfo(action: (api)#DBIO[_], failureHandler: PartialFunction[Throwable, Unit]) extends Product with Serializable

    Permalink
    Definition Classes
    JournalStore
  2. case class JournalEntryInfo(entry: JournalEntry, payload: Any, extraDBIOInfo: Option[(JournalStore.this)#ExtraDBIOInfo]) extends Product with Serializable

    Permalink
    Definition Classes
    JournalStore
  3. case class JournalEntryWithExtraDBIO(entry: JournalEntry, extraDBIO: Seq[(api)#DBIO[_]]) extends Product with Serializable

    Permalink
    Definition Classes
    JournalTable
  4. class JournalTable extends (api)#Table[JournalEntry]

    Permalink
    Definition Classes
    JournalTable

Abstract Value Members

  1. abstract def pgExtension: PgExtension

    Permalink
    Definition Classes
    JournalStore
  2. abstract def serialization: Serialization

    Permalink
    Definition Classes
    JournalStore

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def currentEvents(fromSequenceNr: Long, toSequenceNr: Long, maybeTags: Option[Set[EventTag]]): Source[PersistentRepr, NotUsed]

    Permalink
  7. def currentEvents(persistenceId: String, fromSequenceNr: Long, toSequenceNr: Long): Source[PersistentRepr, NotUsed]

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def eventEncoder: JsonEncoder

    Permalink
    Definition Classes
    JournalStore
  11. def eventTagger: EventTagger

    Permalink
    Definition Classes
    JournalStore
  12. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getCreated(event: Any): OffsetDateTime

    Permalink

    Returns the timestamp an event was created.

    Returns the timestamp an event was created. By default this will return the created timestamp if your event extens Created, otherwise it returns the current time.

    event

    any event

    returns

    the timestamp this event was created

    Definition Classes
    JournalStore
  15. def getUuid(event: Any): String

    Permalink

    Returns a unique id for this event.

    Returns a unique id for this event. By default this just generates a new UUID.

    event

    any event

    returns

    the unique id of the event

    Definition Classes
    JournalStore
  16. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  18. val journals: (api)#TableQuery[(ReadJournalStore.this)#JournalTable]

    Permalink
    Definition Classes
    JournalTable
  19. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def tagsFilter(tags: Set[EventTag]): ((ReadJournalStore.this)#JournalTable) ⇒ (api)#Rep[Boolean]

    Permalink

    build a 'or' filter for tags will select Events containing at least one of the EventTags

    build a 'or' filter for tags will select Events containing at least one of the EventTags

    Attributes
    protected
    Definition Classes
    JournalStore
  24. def toJournalEntries(messages: Seq[PersistentRepr]): Try[Seq[(ReadJournalStore.this)#JournalEntryInfo]]

    Permalink
    Definition Classes
    JournalStore
  25. def toPersistentRepr(entry: JournalEntry): PersistentRepr

    Permalink
    Definition Classes
    JournalStore
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

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

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

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

Inherited from JournalStore

Inherited from journal.JournalTable

Inherited from AnyRef

Inherited from Any

Ungrouped