GRPC C++
1.30.0
|
Common interface for all synchronous server side streaming. More...
#include <sync_stream_impl.h>
Public Member Functions | |
virtual | ~ServerStreamingInterface () |
virtual void | SendInitialMetadata ()=0 |
Block to send initial metadata to client. More... | |
Common interface for all synchronous server side streaming.
|
inlinevirtual |
|
pure virtual |
Block to send initial metadata to client.
This call is optional, but if it is used, it cannot be used concurrently with or after the Finish method.
The initial metadata that will be sent to the client will be taken from the ServerContext associated with the call.
Implemented in grpc_impl::ServerSplitStreamer< RequestType, ResponseType >, grpc_impl::ServerUnaryStreamer< RequestType, ResponseType >, grpc_impl::ServerReaderWriter< W, R >, grpc_impl::ServerWriter< W >, and grpc_impl::ServerReader< R >.