eventstore
package
eventstore
Type Members
-
case class
AggregateMemento(value: String) extends Product with Serializable
-
case class
Commit(streamId: Guid, streamRevision: Int, commitId: Guid, commitSequence: Int, commitStamp: EventDateTime, headers: Map[String, AnyRef], events: List[EventMessage]) extends Product with Serializable
-
case class
CommitedEvent(event: DomainEvent, streamId: Guid, streamRevision: Int) extends Product with Serializable
-
-
-
type
EventDateTime = Long
-
case class
EventMessage(headers: Map[String, AnyRef] = Map(), body: DomainEvent) extends Product with Serializable
-
type
Guid = UUID
-
-
-
-
-
-
-
-
-
-
-
trait
Logging extends AnyRef
-
-
-
case class
Snapshot(streamId: Guid, streamRevision: Int, payload: AnyRef) extends Product with Serializable
-
case class
SomeDomainEvent(value: String) extends DomainEvent with Product with Serializable
-
-
-
case class
StreamHead(streamId: Guid, headRevision: Int, snapshotRevision: Int) extends Product with Serializable
Inherited from AnyRef
Inherited from Any