template <class R>
class ClientAsyncReader
Defined at line 201 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
Async client-side API for doing server-streaming RPCs,
where the incoming message stream coming from the server has
messages of type
Public Methods
void operator delete (void * , std::size_t size)
always allocated against a call arena, no memory free required
Defined at line 204 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
void operator delete (void * , void * )
This operator should never be called as the memory should be freed as part
of the arena destruction. It only exists to provide a matching operator
delete to the operator new so that some compilers will not complain (see
https://github.com/grpc/grpc/issues/11301) Note at the time of adding this
there are no tests catching the compiler warning.
Defined at line 213 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
void StartCall (void * tag)
Defined at line 215 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
void ReadInitialMetadata (void * tag)
See the
method for semantics.
Side effect:
- upon receiving initial metadata from the server,
the
associated with this call is updated, and the
calling code can access the received metadata through the
Defined at line 229 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
void Read (R * msg, void * tag)
Defined at line 238 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h
void Finish (grpc::Status * status, void * tag)
See the
method for semantics.
Side effect:
- the
associated with this call is updated with
possible initial and trailing metadata received from the server.
Defined at line 253 of file ../../third_party/grpc-migrating/src/include/grpcpp/support/async_stream.h