GRPC C++  1.62.0
Public Member Functions
grpc::internal::ServerStreamingInterface Class Referenceabstract

Common interface for all synchronous server side streaming. More...

#include <sync_stream.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::internal::ServerStreamingInterface::~ServerStreamingInterface ( )
inlinevirtual

Member Function Documentation

◆ SendInitialMetadata()

virtual void grpc::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::ServerSplitStreamer< RequestType, ResponseType >, grpc::ServerUnaryStreamer< RequestType, ResponseType >, and grpc::ServerReaderWriter< W, R >.


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