aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/grpc++.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-05-18 10:22:43 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-05-18 10:22:43 -0700
commitd3ec4aaf6f52387d27d02ae80b18bdcaf65828d6 (patch)
tree1e4f02db3d023c799a45698551b47c8e41d4d6e0 /include/grpc++/grpc++.h
parentc7280c7bdbae7fb021f979c9216e1bc5e13fe5ac (diff)
parent656bbbef4152065e498ec3d5cf43bd08820da9b3 (diff)
Merge github.com:grpc/grpc into thread_pool
Diffstat (limited to 'include/grpc++/grpc++.h')
-rw-r--r--include/grpc++/grpc++.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/grpc++/grpc++.h b/include/grpc++/grpc++.h
index daecfea406..978b172346 100644
--- a/include/grpc++/grpc++.h
+++ b/include/grpc++/grpc++.h
@@ -34,14 +34,18 @@
/// \mainpage gRPC C++ API
///
/// The gRPC C++ API mainly consists of the following classes:
+//
/// - grpc::Channel, which represents the connection to an endpoint. See [the
/// gRPC Concepts page](http://www.grpc.io/docs/guides/concepts.html) for more
/// details. Channels are created by the factory function grpc::CreateChannel.
+//
/// - grpc::CompletionQueue, the producer-consumer queue used for all
/// asynchronous communication with the gRPC runtime.
+//
/// - grpc::ClientContext and grpc::ServerContext, where optional configuration
/// for an RPC can be set, such as setting custom metadata to be conveyed to the
/// peer, compression settings, authentication, etc.
+//
/// - grpc::Server, representing a gRPC server, created by grpc::ServerBuilder.
///
/// Streaming calls are handled with the streaming classes in