# Functions
NewEventualEventerBbolt creates a new bbolt backed asynchronous eventer that will check for new events at the given interval or when triggered.
# Constants
EventualEventAddedName is emitted when a new event is added via AddEventualEvent().
EventualEventProcessingBatchDoneName is emitted after the last event processed in a batch.
EventualEventProcessingBatchStartName is emitted as the first set of events are processed after EventualEventProcessingStartName.
EventualEventProcessingDoneName is emitted as the last action during processing after all events and batches.
EventualEventProcessingListenerDoneName is emitted for each function listener after invocation
Event arguments: 0 - an EventualEventProcessingListenerDone struct.
EventualEventProcessingListenerStartName is emitted for each function listener invoked on each event.
EventualEventProcessingStartName is emitted as the first action during processing Event arguments: 0 - an EventualEventProcessingStart struct.
EventualEventRemovedName is emitted when a previously added eventual event is processed
Event arguments: 0 - an EventualEventRemoved struct.
Fields.
MethodAuthenticatorCertCaExternalId represents authentication with a certificate that isn't directly registered with an authenticator.
# Structs
EventualEventerBbolt implements EventualEventer with a bbolt back storage mechanism.
# Interfaces
An EventualEventer provides a method for storing events in a persistent manner that will be processed at a later date.
# Type aliases
EventListenerFunc is a function handler that will be triggered asynchronously some point in the future.