| Package | Description |
|---|---|
| com.google.protobuf |
| Modifier and Type | Method and Description |
|---|---|
Descriptors |
Descriptors.ServiceDescriptor.findMethodByName(String
Find a method by name.
|
| Modifier and Type | Method and Description |
|---|---|
List |
Descriptors.ServiceDescriptor.getMethods()
Get a list of methods for this service.
|
| Modifier and Type | Method and Description |
|---|---|
Message |
BlockingService.callBlockingMethod(Descriptors
Equivalent to
Service, 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
Call the given method of the remote service and blocks until it returns.
|
void |
RpcChannel.callMethod(Descriptors
Call the given method of the remote service.
|
void |
Service.callMethod(Descriptors
Call a method of the service specified by MethodDescriptor.
|
Message |
BlockingService.getRequestPrototype(Descriptors
|
Message |
Service.getRequestPrototype(Descriptors
callMethod() requires that the request passed in is of a particular subclass of
Message.
|
Message |
BlockingService.getResponsePrototype(Descriptors
|
Message |
Service.getResponsePrototype(Descriptors
Like
getRequestPrototype(), but gets a prototype of the response message.
|