Package com.google.protobuf
Interface BlockingRpcChannel
-
public interface BlockingRpcChannelAbstract interface for a blocking RPC channel.BlockingRpcChannelis the blocking equivalent toRpcChannel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessagecallBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype)Call the given method of the remote service and blocks until it returns.
-
-
-
Method Detail
-
callBlockingMethod
Message callBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype) throws ServiceException
Call the given method of the remote service and blocks until it returns.callBlockingMethod()is the blocking equivalent toRpcChannel.callMethod(com.google.protobuf.Descriptors.MethodDescriptor, com.google.protobuf.RpcController, com.google.protobuf.Message, com.google.protobuf.Message, com.google.protobuf.RpcCallback<com.google.protobuf.Message>).- Throws:
ServiceException
-
-