Client-side interface for streaming reads of message of type R. More...
#include <sync_stream.h>
Public Member Functions | |
virtual void | WaitForInitialMetadata ()=0 |
![]() | |
virtual grpc::Status | Finish ()=0 |
virtual | ~ClientStreamingInterface () |
![]() | |
virtual bool | NextMessageSize (uint32_t *sz)=0 |
virtual bool | Read (R *msg)=0 |
virtual | ~ReaderInterface () |
Client-side interface for streaming reads of message of type R.
Definition at line 150 of file grpcpp/impl/codegen/sync_stream.h.
|
pure virtual |
Block to 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.