aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/client_context.h
diff options
context:
space:
mode:
authorGravatar Hongyu Chen <hongyu@google.com>2015-12-02 22:24:33 -0800
committerGravatar Hongyu Chen <hongyu@google.com>2015-12-02 22:24:33 -0800
commit1f9604818799b7f6e15710f016ee4e62800d7158 (patch)
treedf49b8979e6c388f13e72870a3a846b7ec50b2dc /include/grpc++/client_context.h
parent6f9b17184246ccd29e1a5b0271058c3ccfd63887 (diff)
Census tags propagation.
Diffstat (limited to 'include/grpc++/client_context.h')
-rw-r--r--include/grpc++/client_context.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/grpc++/client_context.h b/include/grpc++/client_context.h
index 5c6f432c9a..9d64715803 100644
--- a/include/grpc++/client_context.h
+++ b/include/grpc++/client_context.h
@@ -37,7 +37,6 @@
/// side.
/// - Control call settings such as compression and authentication.
/// - Initial and trailing metadata coming from the server.
-/// - Get performance metrics (ie, census).
///
/// Context settings are only relevant to the call they are invoked with, that
/// is to say, they aren't sticky. Some of these settings, such as the
@@ -64,8 +63,6 @@
#include <grpc/support/log.h>
#include <grpc/support/time.h>
-struct census_context;
-
namespace grpc {
class Channel;
@@ -268,12 +265,6 @@ class ClientContext {
/// \return The call's peer URI.
grpc::string peer() const;
- /// Get and set census context
- void set_census_context(struct census_context* ccp) { census_context_ = ccp; }
- struct census_context* census_context() const {
- return census_context_;
- }
-
/// Send a best-effort out-of-band cancel. The call could be in any stage.
/// e.g. if it is already finished, it may still return success.
///
@@ -323,7 +314,6 @@ class ClientContext {
grpc::string authority_;
std::shared_ptr<CallCredentials> creds_;
mutable std::shared_ptr<const AuthContext> auth_context_;
- struct census_context* census_context_;
std::multimap<grpc::string, grpc::string> send_initial_metadata_;
std::multimap<grpc::string_ref, grpc::string_ref> recv_initial_metadata_;
std::multimap<grpc::string_ref, grpc::string_ref> trailing_metadata_;