GRPC C++
0.11.0.0
|
Common interface for client side asynchronous writing. More...
#include <async_stream.h>
Public Member Functions | |
virtual void | WritesDone (void *tag)=0 |
Signal the client is done with the writes. More... | |
![]() | |
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... | |
![]() | |
virtual | ~AsyncWriterInterface () |
virtual void | Write (const W &msg, void *tag)=0 |
Request the writing of msg with identifying tag tag. More... | |
Common interface for client side asynchronous writing.
|
pure virtual |
Signal the client is done with the writes.
[in] | tag | The tag identifying the operation. |
Implemented in grpc::ClientAsyncWriter< W >.