Uses of Interface
com.google.protobuf.RpcController
-
Packages that use RpcController Package Description com.google.protobuf -
-
Uses of RpcController in com.google.protobuf
Methods in com.google.protobuf with parameters of type RpcController Modifier and Type Method Description MessageBlockingRpcChannel. callBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype)Call the given method of the remote service and blocks until it returns.MessageBlockingService. callBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request)Equivalent toService.callMethod(com.google.protobuf.Descriptors.MethodDescriptor, com.google.protobuf.RpcController, com.google.protobuf.Message, com.google.protobuf.RpcCallback<com.google.protobuf.Message>), except thatcallBlockingMethod()returns the result of the RPC or throws aServiceExceptionif there is a failure, rather than passing the information to a callback.voidRpcChannel. callMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype, RpcCallback<Message> done)Call the given method of the remote service.voidService. callMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, RpcCallback<Message> done)Call a method of the service specified by MethodDescriptor.
-