GRPC C++
0.11.0.0
|
An interface that yields a sequence of messages of type R. More...
#include <async_stream.h>
Public Member Functions | |
virtual | ~AsyncReaderInterface () |
virtual void | Read (R *msg, void *tag)=0 |
Read a message of type R into msg. More... | |
An interface that yields a sequence of messages of type R.
|
inlinevirtual |
|
pure virtual |
Read a message of type R into msg.
Completion will be notified by tag on the associated completion queue.
[out] | msg | Where to eventually store the read message. |
[in] | tag | The tag identifying the operation. |
Implemented in grpc::ServerAsyncReaderWriter< R, W >, grpc::ServerAsyncReader< W, R >, grpc::ClientAsyncReaderWriter< R, W >, and grpc::ClientAsyncReader< R >.