public async Task Close(long fileHandle)
        {
            var handle = new FileHandle(fileHandle);

            await HttpPost(this.HttpClient, "dbfs/close", handle).ConfigureAwait(false);
        }
Exemplo n.º 2
0
        public async Task Close(long fileHandle, CancellationToken cancellationToken = default)
        {
            var handle = new FileHandle(fileHandle);

            await HttpPost(this.HttpClient, "dbfs/close", handle, cancellationToken).ConfigureAwait(false);
        }