Class IDirectoryServiceGrpc.IDirectoryServiceImplBase
java.lang.Object
Arp.System.Commons.Services.Io.Grpc.IDirectoryServiceGrpc.IDirectoryServiceImplBase
- All Implemented Interfaces:
io.grpc.BindableService
- Enclosing class:
IDirectoryServiceGrpc
public abstract static class IDirectoryServiceGrpc.IDirectoryServiceImplBase
extends Object
implements io.grpc.BindableService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal io.grpc.ServerServiceDefinitionvoidclear(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.
-
Constructor Details
-
IDirectoryServiceImplBase
public IDirectoryServiceImplBase()
-
-
Method Details
-
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>
-
bindService
public final io.grpc.ServerServiceDefinition bindService()- Specified by:
bindServicein interfaceio.grpc.BindableService
-