Class

akka.persistence.pg.journal

TestPgAsyncWriteJournal

Related Doc: package journal

Permalink

class TestPgAsyncWriteJournal extends PgAsyncWriteJournal

Linear Supertypes
PgAsyncWriteJournal, JournalStore, journal.JournalTable, PgConfig, ActorLogging, AsyncWriteJournal, AsyncRecovery, WriteJournalBase, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestPgAsyncWriteJournal
  2. PgAsyncWriteJournal
  3. JournalStore
  4. JournalTable
  5. PgConfig
  6. ActorLogging
  7. AsyncWriteJournal
  8. AsyncRecovery
  9. WriteJournalBase
  10. Actor
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TestPgAsyncWriteJournal()

    Permalink

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
  5. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor

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 aroundPostRestart(reason: Throwable): Unit

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

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

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

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

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Definition Classes
    PgAsyncWriteJournal → AsyncWriteJournal
  11. def asyncReadHighestRowId(fromRowId: Long): Future[Long]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  12. def asyncReadHighestRowIdWithTags(tags: Set[EventTag], fromRowId: Long): Future[Long]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  13. def asyncReadHighestSequenceNr(persistenceId: String, fromSequenceNr: Long): Future[Long]

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

    Permalink
    Definition Classes
    PgAsyncWriteJournal → AsyncRecovery
  15. def asyncReplayMessagesBoundedByRowIds(fromRowId: Long, toRowId: Long, max: Long)(replayCallback: (ReplayedEventMessage) ⇒ Unit): Future[Unit]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  16. def asyncReplayTaggedMessagesBoundedByRowIds(tags: Set[EventTag], fromRowId: Long, toRowId: Long, max: Long)(replayCallback: (ReplayedTaggedMessage) ⇒ Unit): Future[Unit]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  17. def asyncWriteMessages(writes: Seq[AtomicWrite]): Future[Seq[Try[Unit]]]

    Permalink
    Definition Classes
    PgAsyncWriteJournal → AsyncWriteJournal
  18. def cancelSubscribers(): Unit

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  19. def clone(): AnyRef

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

    Permalink
    Definition Classes
    Actor
  21. lazy val database: slick.jdbc.JdbcBackend.DatabaseDef

    Permalink
    Definition Classes
    PgConfig
  22. lazy val driver: PgPostgresProfile

    Permalink
    Definition Classes
    PgConfig
  23. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    JournalStore
  26. def eventTagger: EventTagger

    Permalink
    Definition Classes
    JournalStore
  27. implicit val executionContext: ExecutionContextExecutor

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  28. def failureHandlers(entries: Seq[JournalEntryInfo]): Seq[PartialFunction[Throwable, Unit]]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  29. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  31. 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
  32. 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
  33. def hasPersistenceIdSubscribers: Boolean

    Permalink
    Attributes
    protected[akka.persistence.pg.journal]
    Definition Classes
    PgAsyncWriteJournal
  34. def hasTagSubscribers: Boolean

    Permalink
    Attributes
    protected[akka.persistence.pg.journal]
    Definition Classes
    PgAsyncWriteJournal
  35. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    JournalTable
  38. def log: LoggingAdapter

    Permalink
    Definition Classes
    ActorLogging
  39. implicit val materializer: ActorMaterializer

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  40. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  43. def notifyEventsAvailable(entries: Seq[JournalEntry]): Unit

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  44. val persistence: Persistence

    Permalink
    Definition Classes
    WriteJournalBase
  45. val pgExtension: PgExtension

    Permalink
    Definition Classes
    PgAsyncWriteJournalJournalStore
  46. lazy val pluginConfig: PluginTestConfig

    Permalink
  47. def postRestart(reason: Throwable): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    AsyncWriteJournal → Actor
  53. def receivePluginInternal: Receive

    Permalink
    Definition Classes
    PgAsyncWriteJournal → AsyncWriteJournal
  54. final val receiveWriteJournal: actor.Actor.Receive

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

    Permalink
    Definition Classes
    Actor
  56. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  57. val serialization: Serialization

    Permalink
    Definition Classes
    PgAsyncWriteJournalJournalStore
  58. def storeActions(entries: Seq[JournalEntryInfo]): Seq[(api)#DBIO[_]]

    Permalink
    Definition Classes
    PgAsyncWriteJournal
  59. def supervisorStrategy: SupervisorStrategy

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. lazy val writeStrategy: WriteStrategy

    Permalink
    Definition Classes
    PgAsyncWriteJournal

Inherited from PgAsyncWriteJournal

Inherited from JournalStore

Inherited from journal.JournalTable

Inherited from PgConfig

Inherited from ActorLogging

Inherited from AsyncWriteJournal

Inherited from AsyncRecovery

Inherited from WriteJournalBase

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped