Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ERROR_KEY_NOT_FOUND = fmt.Errorf("provided key does not exist")
Functions ¶
This section is empty.
Types ¶
type EventMap ¶
type EventMap[DT any] interface { Get(key string) (data DT, err error) Exists(key string) (exists bool) Len() (l int) Keys() (keys []string) Range(f func(key string, value DT) bool) GetMap() map[string]DT Delete(key string) (err error) Set(key string, data DT) (err error) Stream(eventTypes []event.Type, from store.StreamPosition, filter stream.Filter, ctx context.Context) (out <-chan event.Event[DT], err error) }
Click to show internal directories.
Click to hide internal directories.