Uses of Class
com.google.protobuf.Descriptors.MethodDescriptor

Uses of Descriptors.MethodDescriptor in com.google.protobuf
 

Methods in com.google.protobuf that return Descriptors.MethodDescriptor
 Descriptors.MethodDescriptor Descriptors.ServiceDescriptor.findMethodByName(java.lang.String name)
          Find a method by name.
 

Methods in com.google.protobuf that return types with arguments of type Descriptors.MethodDescriptor
 java.util.List<Descriptors.MethodDescriptor> Descriptors.ServiceDescriptor.getMethods()
          Get a list of methods for this service.
 

Methods in com.google.protobuf with parameters of type Descriptors.MethodDescriptor
 Message BlockingService.callBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request)
          Equivalent to Service.callMethod(com.google.protobuf.Descriptors.MethodDescriptor, com.google.protobuf.RpcController, com.google.protobuf.Message, com.google.protobuf.RpcCallback), except that callBlockingMethod() returns the result of the RPC or throws a ServiceException if there is a failure, rather than passing the information to a callback.
 Message BlockingRpcChannel.callBlockingMethod(Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype)
          Call the given method of the remote service and blocks until it returns.
 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.
 Message Service.getRequestPrototype(Descriptors.MethodDescriptor method)
          callMethod() requires that the request passed in is of a particular subclass of Message.
 Message BlockingService.getRequestPrototype(Descriptors.MethodDescriptor method)
          Equivalent to Service.getRequestPrototype(com.google.protobuf.Descriptors.MethodDescriptor).
 Message Service.getResponsePrototype(Descriptors.MethodDescriptor method)
          Like getRequestPrototype(), but gets a prototype of the response message.
 Message BlockingService.getResponsePrototype(Descriptors.MethodDescriptor method)
          Equivalent to Service.getResponsePrototype(com.google.protobuf.Descriptors.MethodDescriptor).
 



Copyright © 2008-2009 Google. All Rights Reserved.