Versions in this module Expand all Collapse all v0 v0.1.1 Nov 6, 2020 Changes in this version + func New(addrs []string, options *store.Config) (store.Store, error) + func Register() + type EtcdV3 struct + func (s *EtcdV3) AtomicDelete(key string, previous *store.KVPair) (bool, error) + func (s *EtcdV3) AtomicPut(key string, value []byte, previous *store.KVPair, opts *store.WriteOptions) (bool, *store.KVPair, error) + func (s *EtcdV3) Close() + func (s *EtcdV3) Delete(key string) error + func (s *EtcdV3) DeleteTree(directory string) error + func (s *EtcdV3) Exists(key string, opts *store.ReadOptions) (bool, error) + func (s *EtcdV3) Get(key string, opts *store.ReadOptions) (pair *store.KVPair, err error) + func (s *EtcdV3) List(directory string, opts *store.ReadOptions) ([]*store.KVPair, error) + func (s *EtcdV3) NewLock(key string, options *store.LockOptions) (lock store.Locker, err error) + func (s *EtcdV3) Put(key string, value []byte, opts *store.WriteOptions) (err error) + func (s *EtcdV3) Watch(key string, stopCh <-chan struct{}, opts *store.ReadOptions) (<-chan *store.KVPair, error) + func (s *EtcdV3) WatchTree(directory string, stopCh <-chan struct{}, opts *store.ReadOptions) (<-chan []*store.KVPair, error)