Packages

object InmemJournal

The InmemJournal publishes writes and deletes to the eventStream, which tests may use to verify that expected events have been persisted or deleted.

InmemJournal is only intended to be used for tests and therefore binary backwards compatibility of the published messages are not guaranteed.

Annotations
@ApiMayChange()
Source
InmemJournal.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InmemJournal
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Delete(persistenceId: String, toSequenceNr: Long) extends Operation with Product with Serializable
  2. sealed trait Operation extends AnyRef
  3. final case class Write(event: Any, persistenceId: String, sequenceNr: Long) extends Operation with Product with Serializable