OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RpcChannel
(Results
1 - 4
of
4
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
RpcChannel.java
34
* <p>Abstract interface for an RPC channel. An {@code
RpcChannel
} represents a
37
* machine. Normally, you should not call an {@code
RpcChannel
} directly, but
41
*
RpcChannel
channel = rpcImpl.newChannel("remotehost.example.com:1234");
55
public interface
RpcChannel
{
/external/protobuf/src/google/protobuf/
service.cc
41
RpcChannel
::~
RpcChannel
() {}
service.h
48
// A stub is just a type-safe wrapper around an
RpcChannel
which emulates a
75
// To call a remote MyServiceImpl, first you need an
RpcChannel
connected to it.
112
class
RpcChannel
;
131
// parameter to the constructor to tell it to delete its
RpcChannel
when
154
//
RpcChannel
which the stub is using. Server-side Service
260
// Abstract interface for an RPC channel. An
RpcChannel
represents a
263
// should not call an
RpcChannel
directly, but instead construct a stub Service
265
//
RpcChannel
* channel = new MyRpcChannel("remotehost.example.com:1234");
268
class LIBPROTOBUF_EXPORT
RpcChannel
{
270
inline
RpcChannel
() {}
[
all
...]
/external/protobuf/python/google/protobuf/
service.py
82
RpcChannel
which the stub is using.
111
This method isn't really needed, as the
RpcChannel
's CallMethod constructs
201
class
RpcChannel
(object):
205
An
RpcChannel
represents a communication line to a service which can be used
207
machine. Normally, you should not use an
RpcChannel
directly, but instead
211
RpcChannel
channel = rpcImpl.Channel("remotehost.example.com:1234")
Completed in 3561 milliseconds