GRPC C++
0.11.0.0
|
An interface that yields a sequence of messages of type R. More...
#include <sync_stream.h>
Public Member Functions | |
virtual | ~ReaderInterface () |
virtual bool | Read (R *msg)=0 |
Blocking read a message and parse to msg. More... | |
An interface that yields a sequence of messages of type R.
|
inlinevirtual |
|
pure virtual |
Blocking read a message and parse to msg.
Returns true on success.
[out] | msg | The read message. |
Implemented in grpc::ServerReaderWriter< R, W >, grpc::ServerReader< R >, grpc::ClientReaderWriter< R, W >, and grpc::ClientReader< R >.