GRPC C++  1.30.0
Data Structures | Namespaces | Functions
client_callback_impl.h File Reference
#include <atomic>
#include <functional>
#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/channel_interface.h>
#include <grpcpp/impl/codegen/config.h>
#include <grpcpp/impl/codegen/core_codegen_interface.h>
#include <grpcpp/impl/codegen/status.h>

Go to the source code of this file.

Data Structures

class  grpc_impl::internal::CallbackUnaryCallImpl< InputMessage, OutputMessage >
 
class  grpc_impl::ClientBidiReactor< Request, Response >
 ClientBidiReactor is the interface for a bidirectional streaming RPC. More...
 
class  grpc_impl::ClientReadReactor< Response >
 ClientReadReactor is the interface for a server-streaming RPC. More...
 
class  grpc_impl::ClientWriteReactor< Request >
 ClientWriteReactor is the interface for a client-streaming RPC. More...
 
class  grpc_impl::ClientCallbackReaderWriter< Request, Response >
 
class  grpc_impl::ClientCallbackReader< Response >
 
class  grpc_impl::ClientCallbackWriter< Request >
 
class  grpc_impl::ClientCallbackUnary
 
class  grpc_impl::ClientBidiReactor< Request, Response >
 ClientBidiReactor is the interface for a bidirectional streaming RPC. More...
 
class  grpc_impl::ClientReadReactor< Response >
 ClientReadReactor is the interface for a server-streaming RPC. More...
 
class  grpc_impl::ClientWriteReactor< Request >
 ClientWriteReactor is the interface for a client-streaming RPC. More...
 
class  grpc_impl::ClientUnaryReactor
 ClientUnaryReactor is a reactor-style interface for a unary RPC. More...
 
class  grpc_impl::internal::ClientCallbackReaderWriterFactory< Request, Response >
 
class  grpc_impl::internal::ClientCallbackReaderFactory< Response >
 
class  grpc_impl::internal::ClientCallbackWriterFactory< Request >
 
class  grpc_impl::internal::ClientCallbackReaderWriterImpl< Request, Response >
 
class  grpc_impl::internal::ClientCallbackReaderWriterFactory< Request, Response >
 
class  grpc_impl::internal::ClientCallbackReaderImpl< Response >
 
class  grpc_impl::internal::ClientCallbackReaderFactory< Response >
 
class  grpc_impl::internal::ClientCallbackWriterImpl< Request >
 
class  grpc_impl::internal::ClientCallbackWriterFactory< Request >
 
class  grpc_impl::internal::ClientCallbackUnaryImpl
 
class  grpc_impl::internal::ClientCallbackUnaryFactory
 

Namespaces

 grpc
 This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInputStream interface.
 
 grpc::internal
 Models a gRPC server.
 
 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.
 

Functions

template<class InputMessage , class OutputMessage >
void grpc_impl::internal::CallbackUnaryCall (::grpc::ChannelInterface *channel, const ::grpc::internal::RpcMethod &method, ::grpc_impl::ClientContext *context, const InputMessage *request, OutputMessage *result, std::function< void(::grpc::Status)> on_completion)
 Perform a callback-based unary call TODO(vjpai): Combine as much as possible with the blocking unary call code. More...