GRPC C++
0.11.0.0
|
Client-side interface for bi-directional streaming. More...
#include <sync_stream.h>
Public Member Functions | |
virtual void | WaitForInitialMetadata ()=0 |
Blocking wait for initial metadata from server. More... | |
virtual bool | WritesDone ()=0 |
Block until writes are completed. 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... | |
![]() | |
virtual | ~ReaderInterface () |
virtual bool | Read (R *msg)=0 |
Blocking read a message and parse to msg. More... | |
Client-side interface for bi-directional streaming.
|
pure virtual |
Blocking wait for initial metadata from server.
The received metadata can only be accessed after this call returns. Should only be called before the first read. Calling this method is optional, and if it is not called the metadata will be available in ClientContext after the first read.
Implemented in grpc::ClientReaderWriter< R, W >.
|
pure virtual |
Block until writes are completed.
Implemented in grpc::ClientReaderWriter< R, W >.