GRPC C++
0.11.0.0
|
Client-side interface for streaming writes of message of type W. More...
#include <sync_stream.h>
Public Member Functions | |
virtual bool | WritesDone ()=0 |
Half close writing from the client. More... | |
![]() | |
virtual | ~ClientStreamingInterface () |
virtual Status | Finish ()=0 |
Wait until the stream finishes, and return the final status. More... | |
![]() | |
virtual | ~WriterInterface () |
virtual bool | Write (const W &msg, const WriteOptions &options)=0 |
Blocking write msg to the stream with options. More... | |
bool | Write (const W &msg) |
Blocking write msg to the stream with default options. More... | |
Client-side interface for streaming writes of message of type W.
|
pure virtual |
Half close writing from the client.
Block until writes are completed.
Implemented in grpc::ClientWriter< W >.