Class IFileServiceGrpc.IFileServiceImplBase
java.lang.Object
Arp.System.Commons.Services.Io.Grpc.IFileServiceGrpc.IFileServiceImplBase
- All Implemented Interfaces:
io.grpc.BindableService
- Enclosing class:
IFileServiceGrpc
public abstract static class IFileServiceGrpc.IFileServiceImplBase
extends Object
implements io.grpc.BindableService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal io.grpc.ServerServiceDefinitionvoidcopy(IFileServiceOuterClass.IFileServiceCopyRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceCopyResponse> responseObserver) / <summary> / Copies the specified files.voiddelete(IFileServiceOuterClass.IFileServiceDeleteRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceDeleteResponse> responseObserver) / <summary> / Deletes the specified file.voidexists(IFileServiceOuterClass.IFileServiceExistsRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceExistsResponse> responseObserver) / <summary> / Checks if the specified file exists.voidmove(IFileServiceOuterClass.IFileServiceMoveRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceMoveResponse> responseObserver) / <summary> / Moves the specified file.
-
Constructor Details
-
IFileServiceImplBase
public IFileServiceImplBase()
-
-
Method Details
-
exists
public void exists(IFileServiceOuterClass.IFileServiceExistsRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceExistsResponse> responseObserver) / <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 void delete(IFileServiceOuterClass.IFileServiceDeleteRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceDeleteResponse> responseObserver) / <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 void move(IFileServiceOuterClass.IFileServiceMoveRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceMoveResponse> responseObserver) / <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 void copy(IFileServiceOuterClass.IFileServiceCopyRequest request, io.grpc.stub.StreamObserver<IFileServiceOuterClass.IFileServiceCopyResponse> responseObserver) / <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>
-
bindService
public final io.grpc.ServerServiceDefinition bindService()- Specified by:
bindServicein interfaceio.grpc.BindableService
-