View Source Solvent.EventStore (solvent v0.3.0)
Storage for events.
This module delegates to the module given by Solvent's application configuration.
By default, an ETS table is used for the event store.
To change it, set the :event_store
config for the :solvent
app.
config :solvent,
event_store: Solvent.EventStore.ETS
Any module configured in this way must implement the Solvent.EventStore.Base
behaviour.