Uses of Class
com.google.protobuf.Descriptors.MethodDescriptor
Packages that use Descriptors.MethodDescriptor
Package
Description
API for gRPC over Protocol Buffers, including tools for serializing and de-serializing protobuf
messages.
-
Uses of Descriptors.MethodDescriptor in com.google.protobuf
Methods in com.google.protobuf that return Descriptors.MethodDescriptorModifier and TypeMethodDescriptionDescriptors.ServiceDescriptor.findMethodByName
(String name) Find a method by name.Methods in com.google.protobuf that return types with arguments of type Descriptors.MethodDescriptorModifier and TypeMethodDescriptionDescriptors.ServiceDescriptor.getMethods()
Get a list of methods for this service.Methods in com.google.protobuf with parameters of type Descriptors.MethodDescriptorModifier and TypeMethodDescriptionBlockingRpcChannel.callBlockingMethod
(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype) Call the given method of the remote service and blocks until it returns.BlockingService.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 aServiceException
if there is a failure, rather than passing the information to a callback.void
RpcChannel.callMethod
(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype, RpcCallback<Message> done) Call the given method of the remote service.void
Service.callMethod
(Descriptors.MethodDescriptor method, RpcController controller, Message request, RpcCallback<Message> done) Call a method of the service specified by MethodDescriptor.BlockingService.getRequestPrototype
(Descriptors.MethodDescriptor method) Service.getRequestPrototype
(Descriptors.MethodDescriptor method) callMethod()
requires that the request passed in is of a particular subclass ofMessage
.BlockingService.getResponsePrototype
(Descriptors.MethodDescriptor method) Service.getResponsePrototype
(Descriptors.MethodDescriptor method) LikegetRequestPrototype()
, but gets a prototype of the response message. -
Uses of Descriptors.MethodDescriptor in io.grpc.protobuf
Methods in io.grpc.protobuf that return Descriptors.MethodDescriptorModifier and TypeMethodDescriptionProtoMethodDescriptorSupplier.getMethodDescriptor()
Returns method descriptor to the proto service method.