[skip ci]Add missing functions in appendix_a_basic_components.md (#10055)

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/10310/head
ryjiang 2021-10-20 19:34:05 +08:00 committed by GitHub
parent e82e01a7fb
commit 12965c3ce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -472,6 +472,7 @@ func (kv *EtcdKV) MultiRemove(keys []string) error
func (kv *EtcdKV) MultiSaveAndRemove(saves map[string]string, removals []string) error
func (kv *EtcdKV) Watch(key string) clientv3.WatchChan
func (kv *EtcdKV) WatchWithPrefix(key string) clientv3.WatchChan
func (kv *EtcdKV) WatchWithRevision(key string, revision int64) clientv3.WatchChan
func NewEtcdKV(etcdAddr string, rootPath string) *EtcdKV
```