Class IDirectoryServiceGrpc.IDirectoryServiceBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<IDirectoryServiceGrpc.IDirectoryServiceBlockingStub>
io.grpc.stub.AbstractBlockingStub<IDirectoryServiceGrpc.IDirectoryServiceBlockingStub>
Arp.System.Commons.Services.Io.Grpc.IDirectoryServiceGrpc.IDirectoryServiceBlockingStub
- Enclosing class:
IDirectoryServiceGrpc
public static final class IDirectoryServiceGrpc.IDirectoryServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub<IDirectoryServiceGrpc.IDirectoryServiceBlockingStub>
-
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
ConstructorsModifierConstructorDescriptionprivateIDirectoryServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) -
Method Summary
Modifier and TypeMethodDescriptionbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) / <summary> / Removes the content of the specified directory, but does not delete the specified directory itself./ <summary> / Copies the specified directory and its content to the given new location./ <summary> / Creates the specified directory./ <summary> / Deletes the specified directory and its content./ <summary> / Checks if the specified directory exists./ <summary> / Moves the specified directory and its content to the given new location.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
-
IDirectoryServiceBlockingStub
private IDirectoryServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
-
-
Method Details
-
build
protected IDirectoryServiceGrpc.IDirectoryServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<IDirectoryServiceGrpc.IDirectoryServiceBlockingStub>
-
exists
public IDirectoryServiceOuterClass.IDirectoryServiceExistsResponse exists(IDirectoryServiceOuterClass.IDirectoryServiceExistsRequest request) / <summary> / Checks if the specified directory exists. / </summary> / <param name="path">The path of the directory to check.</param> / <returns> / <c>true</c> if the directory exists, otherwise <c>false</c>. / </returns>
-
create
public IDirectoryServiceOuterClass.IDirectoryServiceCreateResponse create(IDirectoryServiceOuterClass.IDirectoryServiceCreateRequest request) / <summary> / Creates the specified directory. / </summary> / <param name="path">The path of the directory to create.</param> / <returns> / Result of the action. / </returns>
-
delete
public IDirectoryServiceOuterClass.IDirectoryServiceDeleteResponse delete(IDirectoryServiceOuterClass.IDirectoryServiceDeleteRequest request) / <summary> / Deletes the specified directory and its content. / </summary> / <param name="path">The path of the directory to delete.</param> / <returns> / Result of the action. / </returns>
-
clear
public IDirectoryServiceOuterClass.IDirectoryServiceClearResponse clear(IDirectoryServiceOuterClass.IDirectoryServiceClearRequest request) / <summary> / Removes the content of the specified directory, but does not delete the specified directory itself. / </summary> / <param name="path">The path of the directory to clear.</param> / <returns> / Result of the action. / </returns>
-
move
public IDirectoryServiceOuterClass.IDirectoryServiceMoveResponse move(IDirectoryServiceOuterClass.IDirectoryServiceMoveRequest request) / <summary> / Moves the specified directory and its content to the given new location. / </summary> / <param name="sourcePath">The source path of the directory to move.</param> / <param name="destinationPath">The destination path of the directory to move all content to.</param> / <param name="clear">If set to <c>true</c> the destination location is cleared first if it yet exists and the operation succeeds anyway / while returning <c>true</c>. / Otherwise, if the destination yet exists, the operations fails and returns <c>false</c>.</param> / <returns> / Result of the action. / </returns>
-
copy
public IDirectoryServiceOuterClass.IDirectoryServiceCopyResponse copy(IDirectoryServiceOuterClass.IDirectoryServiceCopyRequest request) / <summary> / Copies the specified directory and its content to the given new location. / </summary> / <param name="sourcePath">The source path of the directory to copy.</param> / <param name="destinationPath">The destination path of the directory to copy all content to.</param> / <param name="clear">If set to <c>true</c> the destination location is cleared first if it yet exists and the operation succeeds anyway / while returning <c>true</c>. / Otherwise, if the destination yet exists, the operations fails and returns <c>false</c>.</param> / <returns> / Result of the action. / </returns>
-