Home | History | Annotate | Download | only in protobuf

Lines Matching defs:Service

31 """DEPRECATED:  Declares the RPC service interfaces.
51 class Service(object):
57 interface can be used to call the methods of the service without knowing
62 """Retrieves this service's descriptor."""
67 """Calls a method of the service specified by method_descriptor.
76 * method_descriptor.service == GetDescriptor
81 used by this Service. For stubs, the "correct type" depends on the
101 method = service.GetDescriptor().FindMethodByName("Foo")
104 service.CallMethod(method, request, callback)
205 An RpcChannel represents a communication line to a service which can be used
206 to call that service's methods. The service may be running on another
208 construct a stub {@link Service} wrapping it. Example:
213 MyService service = MyService_Stub(channel)
214 service.MyMethod(controller, request, callback)
221 Call the given method of the remote service. The signature of this
222 procedure looks the same as Service.CallMethod(), but the requirements