Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface {
IntentModify(ctx context.Context, intentName string, data []byte) error
IntentExists(ctx context.Context, intentName string) (bool, error)
IntentsList(ctx context.Context) ([]string, error)
IntentGet(ctx context.Context, intentName string) ([]byte, error)
IntentGetAll(ctx context.Context, excludeIntentNames []string, intentChan chan<- *types.Intent, errChan chan<- error)
IntentDelete(ctx context.Context, intentName string, IgnoreNonExisting bool) error
// Delete the Store. Implicitly closes store
Delete() error
// Close the Store
Close() error
}
Click to show internal directories.
Click to hide internal directories.