GRPC C++  1.13.0-dev
Data Structures | Namespaces
server_context.h File Reference
#include <map>
#include <memory>
#include <vector>
#include <grpc/impl/codegen/compression_types.h>
#include <grpcpp/impl/codegen/call.h>
#include <grpcpp/impl/codegen/completion_queue_tag.h>
#include <grpcpp/impl/codegen/config.h>
#include <grpcpp/impl/codegen/create_auth_context.h>
#include <grpcpp/impl/codegen/metadata_map.h>
#include <grpcpp/impl/codegen/security/auth_context.h>
#include <grpcpp/impl/codegen/string_ref.h>
#include <grpcpp/impl/codegen/time.h>

Go to the source code of this file.

Data Structures

class  grpc::ServerAsyncReader< W, R >
 Async server-side API for doing client-streaming RPCs, where the incoming message stream from the client has messages of type R, and the single response message sent from the server is type W. More...
 
class  grpc::ServerAsyncWriter< W >
 Async server-side API for doing server streaming RPCs, where the outgoing message stream from the server has messages of type W. More...
 
class  grpc::ServerAsyncResponseWriter< W >
 Async server-side API for handling unary calls, where the single response message sent to the client is of type W. More...
 
class  grpc::ServerAsyncReaderWriter< W, R >
 Async server-side API for doing bidirectional streaming RPCs, where the incoming message stream coming from the client has messages of type R, and the outgoing message stream coming from the server has messages of type W. 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::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::internal::ServerReaderWriterBody< W, R >
 
class  grpc::internal::RpcMethodHandler< ServiceType, RequestType, ResponseType >
 A wrapper class of an application provided rpc method handler. More...
 
class  grpc::internal::ClientStreamingHandler< ServiceType, RequestType, ResponseType >
 A wrapper class of an application provided client streaming handler. More...
 
class  grpc::internal::ServerStreamingHandler< ServiceType, RequestType, ResponseType >
 A wrapper class of an application provided server streaming handler. More...
 
class  grpc::internal::BidiStreamingHandler< ServiceType, RequestType, ResponseType >
 
class  grpc::internal::TemplatedBidiStreamingHandler< Streamer, WriteNeeded >
 A wrapper class of an application provided bidi-streaming handler. More...
 
class  grpc::ServerContext
 A ServerContext allows the person implementing a service handler to: More...
 

Namespaces

 grpc
 An Alarm posts the user provided tag to its associated completion queue upon expiry or cancellation.
 
 grpc::internal
 Models a gRPC server.
 
 grpc::testing