diff options
author | Craig Tiller <ctiller@google.com> | 2017-01-06 13:59:30 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-01-06 13:59:30 -0800 |
commit | 0d8e0b138de63ca4ef2d49b37f9e91e94cbd84a8 (patch) | |
tree | d457c58b5b9c39f4c1866585b7d43f2fc43d35f9 /include | |
parent | 38842566f72ca51762df4dac4677bfdbd15d16d7 (diff) | |
parent | d112aac7dc7caff6af8c4bd1ec549d4f711cd711 (diff) |
Merge github.com:grpc/grpc into fix_errors
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/grpc++.h | 4 | ||||
-rw-r--r-- | include/grpc++/impl/codegen/completion_queue.h | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/grpc++/grpc++.h b/include/grpc++/grpc++.h index 36d65d6ee1..daecfea406 100644 --- a/include/grpc++/grpc++.h +++ b/include/grpc++/grpc++.h @@ -44,6 +44,10 @@ /// peer, compression settings, authentication, etc. /// - grpc::Server, representing a gRPC server, created by grpc::ServerBuilder. /// +/// Streaming calls are handled with the streaming classes in +/// \ref sync_stream.h and +/// \ref async_stream.h. +/// /// Refer to the /// [examples](https://github.com/grpc/grpc/blob/master/examples/cpp) /// for code putting these pieces into play. diff --git a/include/grpc++/impl/codegen/completion_queue.h b/include/grpc++/impl/codegen/completion_queue.h index 944f2c3919..03cecdc21c 100644 --- a/include/grpc++/impl/codegen/completion_queue.h +++ b/include/grpc++/impl/codegen/completion_queue.h @@ -94,8 +94,10 @@ class ServerContext; extern CoreCodegenInterface* g_core_codegen_interface; -/// A thin wrapper around \a grpc_completion_queue (see / \a -/// src/core/surface/completion_queue.h). +/// A thin wrapper around \ref grpc_completion_queue (see \ref +/// src/core/lib/surface/completion_queue.h). +/// See \ref doc/cpp/perf_notes.md for notes on best practices for high +/// performance servers. class CompletionQueue : private GrpcLibraryCodegen { public: /// Default constructor. Implicitly creates a \a grpc_completion_queue |