public async Task ExistsAsync()

in client/Apache.ShenYu.Client/Utils/Zookeeper/ZookeeperClient.cs [156:165]


        public async Task<bool> ExistsAsync(string path)
        {
            path = GetZooKeeperPath(path);
            return await RetryUntilConnected(async () =>
            {
                var data = await _zookeeperClient.existsAsync(path, false);
                var exists = data != null;
                return exists;
            });
        }