GRPC C++  1.62.0
Data Structures | Namespaces
sync_stream.h File Reference
#include <grpc/support/log.h>
#include <grpcpp/client_context.h>
#include <grpcpp/completion_queue.h>
#include <grpcpp/impl/call.h>
#include <grpcpp/impl/codegen/channel_interface.h>
#include <grpcpp/impl/service_type.h>
#include <grpcpp/server_context.h>
#include <grpcpp/support/status.h>

Go to the source code of this file.

Data Structures

class  grpc::internal::ClientStreamingInterface
 Common interface for all synchronous client side streaming. More...
 
class  grpc::internal::ServerStreamingInterface
 Common interface for all synchronous server side streaming. More...
 
class  grpc::internal::ReaderInterface< R >
 An interface that yields a sequence of messages of type R. More...
 
class  grpc::internal::WriterInterface< W >
 An interface that can be fed a sequence of messages of type W. More...
 
class  grpc::ClientReaderInterface< R >
 Client-side interface for streaming reads of message of type R. More...
 
class  grpc::internal::ClientReaderFactory< R >
 
class  grpc::ClientReader< R >
 Synchronous (blocking) client-side API for doing server-streaming RPCs, where the stream of messages coming from the server has messages of type R. More...
 
class  grpc::ClientWriterInterface< W >
 Client-side interface for streaming writes of message type W. More...
 
class  grpc::internal::ClientWriterFactory< W >
 
class  grpc::ClientWriter< W >
 Synchronous (blocking) client-side API for doing client-streaming RPCs, where the outgoing message stream coming from the client has messages of type W. More...
 
class  grpc::ClientReaderWriterInterface< W, R >
 Client-side interface for bi-directional streaming with client-to-server stream messages of type W and server-to-client stream messages of type R. More...
 
class  grpc::internal::ClientReaderWriterFactory< W, R >
 
class  grpc::ClientReaderWriter< W, R >
 Synchronous (blocking) client-side API for bi-directional streaming RPCs, where the outgoing message stream coming from the client has messages of type W, and the incoming messages stream coming from the server has messages of type R. More...
 
class  grpc::ServerReaderInterface< R >
 Server-side interface for streaming reads of message of type R. More...
 
class  grpc::ServerReader< R >
 Synchronous (blocking) server-side API for doing client-streaming RPCs, where the incoming message stream coming from the client has messages of type R. More...
 
class  grpc::ServerWriterInterface< W >
 Server-side interface for streaming writes of message of type W. More...
 
class  grpc::ServerWriter< W >
 Synchronous (blocking) server-side API for doing for doing a server-streaming RPCs, where the outgoing message stream coming from the server has messages of type W. More...
 
class  grpc::ServerReaderWriterInterface< W, R >
 Server-side interface for bi-directional streaming. More...
 
class  grpc::internal::ServerReaderWriterBody< W, R >
 
class  grpc::ServerReaderWriter< W, R >
 Synchronous (blocking) server-side API for a bidirectional streaming call, where the incoming message stream coming from the client has messages of type R, and the outgoing message streaming coming from the server has messages of type W. More...
 
class  grpc::ServerUnaryStreamer< RequestType, ResponseType >
 A class to represent a flow-controlled unary call. More...
 
class  grpc::ServerSplitStreamer< RequestType, ResponseType >
 A class to represent a flow-controlled server-side streaming call. More...
 

Namespaces

 grpc
 An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided function on expiry or cancellation.
 
 grpc::internal
 Models a gRPC server.