GRPC C++
0.11.0.0
|
Common interface for all client side asynchronous streaming. More...
#include <async_stream.h>
Public Member Functions | |
virtual | ~ClientAsyncStreamingInterface () |
virtual void | ReadInitialMetadata (void *tag)=0 |
Request notification of the reading of the initial metadata. More... | |
virtual void | Finish (Status *status, void *tag)=0 |
Request notification completion. More... | |
Common interface for all client side asynchronous streaming.
|
inlinevirtual |
|
pure virtual |
Request notification completion.
[out] | status | To be updated with the operation status. |
[in] | tag | Tag identifying this request. |
Implemented in grpc::ClientAsyncReaderWriter< R, W >, grpc::ClientAsyncWriter< W >, and grpc::ClientAsyncReader< R >.
|
pure virtual |
Request notification of the reading of the initial metadata.
Completion will be notified by tag on the associated completion queue.
[in] | tag | Tag identifying this request. |
Implemented in grpc::ClientAsyncReaderWriter< R, W >, grpc::ClientAsyncWriter< W >, and grpc::ClientAsyncReader< R >.