Documentation ¶
Index ¶
Constants ¶
View Source
const LoggerTag = "EVENTSTORE"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventStore ¶
type EventStore struct {
// contains filtered or unexported fields
}
EventStore listens for event messages using the transport and stores them for later use.
func New ¶
func New(ctx context.Context, cfg Config) (*EventStore, error)
New returns a new instance of the EventStore struct.
func (*EventStore) Start ¶
func (e *EventStore) Start() error
func (*EventStore) Wait ¶
func (e *EventStore) Wait() chan error
Wait waits until the context is canceled or until an error occurs.
type Storage ¶
type Storage interface { // Add adds a message to the store. If the message already exists, no error // will be returned. Method is thread safe. Add(msg *messages.Event) error // Get returns a message form the store. If the message does not exist, // nil will be returned. Method is thread safe. Get(typ string, idx []byte) ([]*messages.Event, error) }
Click to show internal directories.
Click to hide internal directories.