GRPC C++  0.11.0.0
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions
grpc::AsyncWriterInterface< W > Class Template Referenceabstract

An interface that can be fed a sequence of messages of type W. More...

#include <async_stream.h>

Public Member Functions

virtual ~AsyncWriterInterface ()
 
virtual void Write (const W &msg, void *tag)=0
 Request the writing of msg with identifying tag tag. More...
 

Detailed Description

template<class W>
class grpc::AsyncWriterInterface< W >

An interface that can be fed a sequence of messages of type W.

Constructor & Destructor Documentation

template<class W >
virtual grpc::AsyncWriterInterface< W >::~AsyncWriterInterface ( )
inlinevirtual

Member Function Documentation

template<class W >
virtual void grpc::AsyncWriterInterface< W >::Write ( const W &  msg,
void *  tag 
)
pure virtual

Request the writing of msg with identifying tag tag.

Parameters
[in]msgThe message to be written.
[in]tagThe tag identifying the operation.

Implemented in grpc::ServerAsyncReaderWriter< R, W >, grpc::ServerAsyncWriter< W >, grpc::ClientAsyncReaderWriter< R, W >, and grpc::ClientAsyncWriter< W >.


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