Documentation ¶
Overview ¶
mysqls mysql backend driver
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface { // Returns Versioner associated with this interface. Versioner() storage.Versioner Create(ctx context.Context, key string, obj, out runtime.Object) error //cannot get item by key, so need selection predicate Delete(ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions) error Get(ctx context.Context, key string, objPtr runtime.Object, ignoreNotFound bool) error GetToList(ctx context.Context, key string, p storage.SelectionPredicate, listObj runtime.Object) error //cannot get item by key, so need selection predicate GuaranteedUpdate(ctx context.Context, key string, ptrToType runtime.Object, ignoreNotFound bool, precondtions *storage.Preconditions, tryUpdate UpdateFunc, suggestion ...runtime.Object) error }
Interface implement a storeage backend
Click to show internal directories.
Click to hide internal directories.