IEventStore Type
Append-only event log used for event-sourced persistence of the richer stores. The store records each mutating call as a serialized event and replays them in order to rebuild in-memory state, reusing the existing in-memory query logic.
Instance members
| Instance member |
Description
|
Full Usage:
this.Append
Parameters:
string
Modifiers: abstract |
Append one serialized event.
|
Full Usage:
this.LoadAll
Returns: string list
Modifiers: abstract |
Load all events for this stream in insertion order.
|
Nao