Class IDirectoryServiceGrpc.IDirectoryServiceStub
java.lang.Object
io.grpc.stub.AbstractStub<IDirectoryServiceGrpc.IDirectoryServiceStub>
io.grpc.stub.AbstractAsyncStub<IDirectoryServiceGrpc.IDirectoryServiceStub>
Arp.System.Commons.Services.Io.Grpc.IDirectoryServiceGrpc.IDirectoryServiceStub
- Enclosing class:
IDirectoryServiceGrpc
public static final class IDirectoryServiceGrpc.IDirectoryServiceStub
extends io.grpc.stub.AbstractAsyncStub<IDirectoryServiceGrpc.IDirectoryServiceStub>
-
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
ConstructorsModifierConstructorDescriptionprivateIDirectoryServiceStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) -
Method Summary
Modifier and TypeMethodDescriptionbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) voidclear(IDirectoryServiceOuterClass.IDirectoryServiceClearRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceClearResponse> responseObserver) / <summary> / Removes the content of the specified directory, but does not delete the specified directory itself.voidcopy(IDirectoryServiceOuterClass.IDirectoryServiceCopyRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceCopyResponse> responseObserver) / <summary> / Copies the specified directory and its content to the given new location.voidcreate(IDirectoryServiceOuterClass.IDirectoryServiceCreateRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceCreateResponse> responseObserver) / <summary> / Creates the specified directory.voiddelete(IDirectoryServiceOuterClass.IDirectoryServiceDeleteRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceDeleteResponse> responseObserver) / <summary> / Deletes the specified directory and its content.voidexists(IDirectoryServiceOuterClass.IDirectoryServiceExistsRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceExistsResponse> responseObserver) / <summary> / Checks if the specified directory exists.voidmove(IDirectoryServiceOuterClass.IDirectoryServiceMoveRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceMoveResponse> responseObserver) / <summary> / Moves the specified directory and its content to the given new location.Methods inherited from class io.grpc.stub.AbstractAsyncStub
newStub, newStubMethods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
-
Constructor Details
-
IDirectoryServiceStub
private IDirectoryServiceStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
-
-
Method Details
-
build
protected IDirectoryServiceGrpc.IDirectoryServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<IDirectoryServiceGrpc.IDirectoryServiceStub>
-
exists
public void exists(IDirectoryServiceOuterClass.IDirectoryServiceExistsRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceExistsResponse> responseObserver) / <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 void create(IDirectoryServiceOuterClass.IDirectoryServiceCreateRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceCreateResponse> responseObserver) / <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 void delete(IDirectoryServiceOuterClass.IDirectoryServiceDeleteRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceDeleteResponse> responseObserver) / <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 void clear(IDirectoryServiceOuterClass.IDirectoryServiceClearRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceClearResponse> responseObserver) / <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 void move(IDirectoryServiceOuterClass.IDirectoryServiceMoveRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceMoveResponse> responseObserver) / <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 void copy(IDirectoryServiceOuterClass.IDirectoryServiceCopyRequest request, io.grpc.stub.StreamObserver<IDirectoryServiceOuterClass.IDirectoryServiceCopyResponse> responseObserver) / <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>
-