|
GRPC C++
1.0.0
|
Client-side interface for asynchronous bi-directional streaming. More...
#include <async_stream.h>
Public Member Functions | |
| virtual void | WritesDone (void *tag)=0 |
| Signal the client is done with the writes. More... | |
Public Member Functions inherited from grpc::ClientAsyncStreamingInterface | |
| 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 |
| Indicate that the stream is to be finished and request notification Should not be used concurrently with other operations. More... | |
Public Member Functions inherited from grpc::AsyncWriterInterface< W > | |
| virtual | ~AsyncWriterInterface () |
| virtual void | Write (const W &msg, void *tag)=0 |
| Request the writing of msg with identifying tag tag. More... | |
Public Member Functions inherited from grpc::AsyncReaderInterface< R > | |
| virtual | ~AsyncReaderInterface () |
| virtual void | Read (R *msg, void *tag)=0 |
| Read a message of type R into msg. More... | |
Client-side interface for asynchronous bi-directional streaming.
|
pure virtual |
Signal the client is done with the writes.
Thread-safe with respect to Read
| [in] | tag | The tag identifying the operation. |
Implemented in grpc::ClientAsyncReaderWriter< W, R >.
1.8.11