Home | History | Annotate | Download | only in protobuf

Lines Matching refs:RpcChannel

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() {}
271 virtual ~RpcChannel();
285 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(RpcChannel);