Async client-side interface for bi-directional streaming, where the outgoing message stream going to the server has messages of type W, and the incoming message stream coming from the server has messages of type R.
More...
|
void | StartCall (void *tag) override |
|
void | ReadInitialMetadata (void *tag) override |
| See the ClientAsyncStreamingInterface.ReadInitialMetadata method for semantics of this method. More...
|
|
void | Read (R *msg, void *tag) override |
|
void | Write (const W &msg, void *tag) override |
|
void | Write (const W &msg, grpc::WriteOptions options, void *tag) override |
|
void | WritesDone (void *tag) override |
|
void | Finish (grpc::Status *status, void *tag) override |
| See the ClientAsyncStreamingInterface.Finish method for semantics. More...
|
|
template<class W, class R>
class grpc::ClientAsyncReaderWriter< W, R >
Async client-side interface for bi-directional streaming, where the outgoing message stream going to the server has messages of type W, and the incoming message stream coming from the server has messages of type R.