Documentation ¶ Index ¶ type Lister type Store func NewStore(apiClient apiClient, gracePeriod time.Duration, logger *zap.Logger) Store Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Lister ¶ added in v0.25.0 type Lister interface { // List gives back the not-handled event list which is sorted by newest. ListNotHandled(name string, labels map[string]string, minCreatedAt int64, limit int) []*model.Event } type Store ¶ type Store interface { // Run starts syncing the event list with the control-plane. Run(ctx context.Context) error Lister() Lister } func NewStore ¶ func NewStore(apiClient apiClient, gracePeriod time.Duration, logger *zap.Logger) Store NewStore creates a new event store instance. This syncs with the control plane to keep the list of events for this runner up-to-date. Source Files ¶ View all Source files store.go Click to show internal directories. Click to hide internal directories.