5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 11:22:31 +00:00
matterbridge/vendor/github.com/xordataexchange/crypt/backend/backend.go

33 lines
830 B
Go
Raw Normal View History

2018-03-04 22:46:13 +00:00
// Package backend provides the K/V store interface for crypt backends.
package backend
// Response represents a response from a backend store.
type Response struct {
Value []byte
Error error
}
// KVPair holds both a key and value when reading a list.
type KVPair struct {
Key string
Value []byte
}
type KVPairs []*KVPair
// A Store is a K/V store backend that retrieves and sets, and monitors
// data in a K/V store.
type Store interface {
// Get retrieves a value from a K/V store for the provided key.
Get(key string) ([]byte, error)
// List retrieves all keys and values under a provided key.
List(key string) (KVPairs, error)
// Set sets the provided key to value.
Set(key string, value []byte) error
// Watch monitors a K/V store for changes to key.
Watch(key string, stop chan bool) <-chan *Response
}