Trait

akka.persistence.pg.journal

JournalStore

Related Doc: package journal

Permalink

trait JournalStore extends JournalTable

The journal/event store: it stores persistent messages. Either payload or event must be NOT NULL

Self Type
JournalStore with PgConfig
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JournalStore
  2. JournalTable
  3. AnyRef
  4. 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
  2. case class JournalEntryInfo(entry: JournalEntry, payload: Any, extraDBIOInfo: Option[(JournalStore.this)#ExtraDBIOInfo]) extends Product with Serializable

    Permalink
  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
  2. abstract def serialization: Serialization

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
  9. def eventTagger: EventTagger

    Permalink
  10. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. 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

  13. 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

  14. def hashCode(): Int

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def tagsFilter(tags: Set[EventTag]): ((JournalStore.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
  22. def toJournalEntries(messages: Seq[PersistentRepr]): Try[Seq[(JournalStore.this)#JournalEntryInfo]]

    Permalink
  23. def toPersistentRepr(entry: JournalEntry): PersistentRepr

    Permalink
  24. def toString(): String

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

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

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

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

Inherited from journal.JournalTable

Inherited from AnyRef

Inherited from Any

Ungrouped