Class StorageServiceGrpc.StorageServiceBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractBlockingStub<StorageServiceGrpc.StorageServiceBlockingStub>
io.deephaven.proto.backplane.grpc.StorageServiceGrpc.StorageServiceBlockingStub
- Enclosing class:
- StorageServiceGrpc
public static final class StorageServiceGrpc.StorageServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub<StorageServiceGrpc.StorageServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service StorageService.
Shared storage management service. Operations may fail (or omit data) if the current session does not have permission to read or write that resource. Paths will be "/" delimited and must start with a leading slash.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub
io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>>
-
Method Summary
Modifier and TypeMethodDescriptionbuild
(io.grpc.Channel channel, io.grpc.CallOptions callOptions) createDirectory
(CreateDirectoryRequest request) Creates a directory at the given path.deleteItem
(DeleteItemRequest request) Deletes the file or directory at the given path.fetchFile
(FetchFileRequest request) Reads the file at the given path.listItems
(ListItemsRequest request) Lists the files and directories present in a given directory.moveItem
(MoveItemRequest request) Moves a file from one path to another.saveFile
(SaveFileRequest request) Can create new files or modify existing with client provided contents.Methods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStub
Methods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
-
Method Details
-
build
protected StorageServiceGrpc.StorageServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
build
in classio.grpc.stub.AbstractStub<StorageServiceGrpc.StorageServiceBlockingStub>
-
listItems
Lists the files and directories present in a given directory. Will return an error
-
fetchFile
Reads the file at the given path. Client can optionally specify an etag, asking the server not to send the file if it hasn't changed.
-
saveFile
Can create new files or modify existing with client provided contents.
-
moveItem
Moves a file from one path to another.
-
createDirectory
Creates a directory at the given path.
-
deleteItem
Deletes the file or directory at the given path. Directories must be empty to be deleted.
-