Expand description
Module for creating and managing long-running Subscriptions
to incoming events in the EventStore.
Structs§
- Transient
Subscriptiontype which gets deleted once the process using it gets terminated.
Enums§
Traits§
- Event
Subscriber - Component to let users subscribe to newly-inserted events into the
EventStore. - Subscription
- A Subscription to an
EventStreamwhich can be “checkpointed”: keeps a record of the latest message processed by itself usingcheckpoint, and can resume working from such message by using theresume.
Type Aliases§
- Event
Stream - Stream of events returned by the
EventSubscriber::subscribe_allmethod. - Subscription
Stream - Stream of events returned by the
Subscription::resumemethod.