public async Task DeleteAsync()

in client/Apache.ShenYu.Client/Utils/Zookeeper/ZookeeperClient.cs [269:277]


        public async Task DeleteAsync(string path, int version = -1)
        {
            path = GetZooKeeperPath(path);
            await RetryUntilConnected(async () =>
            {
                await _zookeeperClient.deleteAsync(path, version);
                return 0;
            });
        }