Move String method (#1467)

This commit is contained in:
Asim Aslam 2020-04-01 23:27:15 +01:00 committed by GitHub
parent d2b6d35220
commit 0a15ae9b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,8 +20,6 @@ type Store interface {
Init(...Option) error Init(...Option) error
// Options allows you to view the current options. // Options allows you to view the current options.
Options() Options Options() Options
// String returns the name of the implementation.
String() string
// Read takes a single key name and optional ReadOptions. It returns matching []*Record or an error. // Read takes a single key name and optional ReadOptions. It returns matching []*Record or an error.
Read(key string, opts ...ReadOption) ([]*Record, error) Read(key string, opts ...ReadOption) ([]*Record, error)
// Write() writes a record to the store, and returns an error if the record was not written. // Write() writes a record to the store, and returns an error if the record was not written.
@ -30,6 +28,8 @@ type Store interface {
Delete(key string, opts ...DeleteOption) error Delete(key string, opts ...DeleteOption) error
// List returns any keys that match, or an empty list with no error if none matched. // List returns any keys that match, or an empty list with no error if none matched.
List(opts ...ListOption) ([]string, error) List(opts ...ListOption) ([]string, error)
// String returns the name of the implementation.
String() string
} }
// Record is an item stored or retrieved from a Store // Record is an item stored or retrieved from a Store