Class IFileServiceGrpc.IFileServiceBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<IFileServiceGrpc.IFileServiceBlockingStub>
io.grpc.stub.AbstractBlockingStub<IFileServiceGrpc.IFileServiceBlockingStub>
Arp.System.Commons.Services.Io.Grpc.IFileServiceGrpc.IFileServiceBlockingStub
- Enclosing class:
IFileServiceGrpc
public static final class IFileServiceGrpc.IFileServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub<IFileServiceGrpc.IFileServiceBlockingStub>
-
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>> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateIFileServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) -
Method Summary
Modifier and TypeMethodDescriptionbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) / <summary> / Copies the specified files./ <summary> / Deletes the specified file./ <summary> / Checks if the specified file exists./ <summary> / Moves the specified file.Methods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStubMethods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
-
Constructor Details
-
IFileServiceBlockingStub
private IFileServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
-
-
Method Details
-
build
protected IFileServiceGrpc.IFileServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<IFileServiceGrpc.IFileServiceBlockingStub>
-
exists
public IFileServiceOuterClass.IFileServiceExistsResponse exists(IFileServiceOuterClass.IFileServiceExistsRequest request) / <summary> / Checks if the specified file exists. / </summary> / <param name="path">Path of the file to check.</param> / <returns> / <c>true</c> if the file exists, otherwise <c>false</c>. / </returns>
-
delete
public IFileServiceOuterClass.IFileServiceDeleteResponse delete(IFileServiceOuterClass.IFileServiceDeleteRequest request) / <summary> / Deletes the specified file. / </summary> / <param name="filePath">The pathe of the file to delete.</param> / <returns> / Result of the action. / </returns>
-
move
public IFileServiceOuterClass.IFileServiceMoveResponse move(IFileServiceOuterClass.IFileServiceMoveRequest request) / <summary> / Moves the specified file. / </summary> / <param name="createDirectory">if set to <c>true</c> the directory of the file is created (recursively), if it does not exists yet.</param> / <param name="overwrite">if set to <c>true</c> the destination file is overwritten, if it yet exists, otherwise an error is returned.</param> / <param name="sourceFilePath">The source path of the file to move.</param> / <param name="destinationFilePath">The destination path of the file to move.</param> / <returns> / Result of the action. / </returns>
-
copy
public IFileServiceOuterClass.IFileServiceCopyResponse copy(IFileServiceOuterClass.IFileServiceCopyRequest request) / <summary> / Copies the specified files. / </summary> / <param name="createDirectory">if set to <c>true</c> the directory of the file is created (recursively), if it does not exists yet.</param> / <param name="overwrite">if set to <c>true</c> the destination file is overwritten, if it yet exists, otherwise an error is returned.</param> / <param name="sourceFilePath">The source path of the file to copy.</param> / <param name="destinationFilePath">The destination path of the file to copy.</param> / <returns> / Result of the action. / </returns>
-