Maestro v0.2.0 Maestro.Store View Source
Concise API for events and snapshots.
If you are using the Maestro.Store.Postgres
adapter, an Ecto.Repo
should
be provided.
Link to this section Summary
Functions
Commit the events and apply all projections within a transaction. If there’s a sequence number conflict, the events and projections will be discarded such that the command generating these components could be retried
Commit the events provided iff there is no sequence number conflict. Otherwise, the command should be retried as indicated by the specific error tuple
Store the snapshot iff the sequence number is greater than what is in the store. This allows nodes that are partitioned from each other to treat the store as the source of truth even when writing snapshots
Retrieve all events for a specific aggregate by id and minimum sequence number
Retrieve a snapshot by aggregate id and minimum sequence number. If no snapshot is found, nil is returned
Return the maximum allowable sequence number permitted by the durable storage adapter
Link to this section Types
Link to this section Functions
Commit the events and apply all projections within a transaction. If there’s a sequence number conflict, the events and projections will be discarded such that the command generating these components could be retried.
commit_events(events()) :: :ok | {:error, :retry_command}
Commit the events provided iff there is no sequence number conflict. Otherwise, the command should be retried as indicated by the specific error tuple.
Store the snapshot iff the sequence number is greater than what is in the store. This allows nodes that are partitioned from each other to treat the store as the source of truth even when writing snapshots.
Retrieve all events for a specific aggregate by id and minimum sequence number.
Options include:
:max_sequence
- useful hydration purposes (defaults tomax_sequence/0
)
Retrieve a snapshot by aggregate id and minimum sequence number. If no snapshot is found, nil is returned.
Options include:
:max_sequence
- useful hydration purposes (defaults tomax_sequence/0
)
Return the maximum allowable sequence number permitted by the durable storage adapter.