GRPC C++  1.30.0
Data Structures | Namespaces | Typedefs
server_callback_impl.h File Reference
#include <atomic>
#include <functional>
#include <type_traits>
#include <grpcpp/impl/codegen/call.h>
#include <grpcpp/impl/codegen/call_op_set.h>
#include <grpcpp/impl/codegen/callback_common.h>
#include <grpcpp/impl/codegen/config.h>
#include <grpcpp/impl/codegen/core_codegen_interface.h>
#include <grpcpp/impl/codegen/message_allocator.h>
#include <grpcpp/impl/codegen/status.h>

Go to the source code of this file.

Data Structures

class  grpc_impl::internal::CallbackUnaryHandler< RequestType, ResponseType >
 
class  grpc_impl::internal::CallbackClientStreamingHandler< RequestType, ResponseType >
 
class  grpc_impl::internal::CallbackServerStreamingHandler< RequestType, ResponseType >
 
class  grpc_impl::internal::CallbackBidiHandler< RequestType, ResponseType >
 
class  grpc_impl::internal::ServerReactor
 
class  grpc_impl::internal::ServerCallbackCall
 The base class of ServerCallbackUnary etc. More...
 
class  grpc_impl::internal::DefaultMessageHolder< Request, Response >
 
class  grpc_impl::ServerReadReactor< Request >
 ServerReadReactor is the interface for a client-streaming RPC. More...
 
class  grpc_impl::ServerWriteReactor< Response >
 ServerWriteReactor is the interface for a server-streaming RPC. More...
 
class  grpc_impl::ServerBidiReactor< Request, Response >
 ServerBidiReactor is the interface for a bidirectional streaming RPC. More...
 
class  grpc_impl::ServerCallbackUnary
 
class  grpc_impl::ServerCallbackReader< Request >
 
class  grpc_impl::ServerCallbackWriter< Response >
 
class  grpc_impl::ServerCallbackReaderWriter< Request, Response >
 
class  grpc_impl::ServerBidiReactor< Request, Response >
 ServerBidiReactor is the interface for a bidirectional streaming RPC. More...
 
class  grpc_impl::ServerReadReactor< Request >
 ServerReadReactor is the interface for a client-streaming RPC. More...
 
class  grpc_impl::ServerWriteReactor< Response >
 ServerWriteReactor is the interface for a server-streaming RPC. More...
 
class  grpc_impl::ServerUnaryReactor
 
class  grpc_impl::internal::FinishOnlyReactor< Base >
 

Namespaces

 grpc_impl
 An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided function on expiry or cancellation.
 
 grpc_impl::internal
 Actual implementation of bi-directional streaming.
 

Typedefs

using grpc_impl::internal::UnimplementedUnaryReactor = FinishOnlyReactor< ServerUnaryReactor >
 
template<class Request >
using grpc_impl::internal::UnimplementedReadReactor = FinishOnlyReactor< ServerReadReactor< Request > >
 
template<class Response >
using grpc_impl::internal::UnimplementedWriteReactor = FinishOnlyReactor< ServerWriteReactor< Response > >
 
template<class Request , class Response >
using grpc_impl::internal::UnimplementedBidiReactor = FinishOnlyReactor< ServerBidiReactor< Request, Response > >