GRPC C++  1.30.0
Public Member Functions
grpc_impl::internal::ServerStreamingInterface Class Referenceabstract

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...
 

Detailed Description

Common interface for all synchronous server side streaming.

Constructor & Destructor Documentation

◆ ~ServerStreamingInterface()

virtual grpc_impl::internal::ServerStreamingInterface::~ServerStreamingInterface ( )
inlinevirtual

Member Function Documentation

◆ SendInitialMetadata()

virtual void grpc_impl::internal::ServerStreamingInterface::SendInitialMetadata ( )
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 >.


The documentation for this class was generated from the following file: