Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DestroyFunc ¶
type DestroyFunc func()
type Store ¶
type Store interface { Info(ctx context.Context, key string) (*types.Runtime, error) Count(ctx context.Context, key, keyRegexFilter string) (int, error) Put(ctx context.Context, key string, obj, out interface{}, ttl uint64) error Get(ctx context.Context, key string, objPtr interface{}, rev *int64) error List(ctx context.Context, key, filter string, listObjPtr interface{}, rev *int64) error Map(ctx context.Context, key, filter string, mapObj interface{}, rev *int64) error Set(ctx context.Context, key string, obj, outPtr interface{}, ttl uint64, force bool, rev *int64) error Del(ctx context.Context, key string) error Watch(ctx context.Context, key, filter string, rev *int64) (types.Watcher, error) Begin(ctx context.Context) TX Decode(ctx context.Context, value []byte, out interface{}) error }
Click to show internal directories.
Click to hide internal directories.