diff options
author | Vijay Pai <vpai@google.com> | 2015-03-22 12:39:10 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2015-03-22 12:39:10 -0700 |
commit | 8c8588c7dc047ee509c7367f61ba0c5f00cb61d1 (patch) | |
tree | c8f630d6060fd1548e7a038362864557a6a2b047 /include | |
parent | 93f1ed39b3306dff4fb7f0d2f2c5d4cc93543e1e (diff) |
Remove dead members of server context
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/server_context.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/grpc++/server_context.h b/include/grpc++/server_context.h index 9e3b80c641..36cbae87a0 100644 --- a/include/grpc++/server_context.h +++ b/include/grpc++/server_context.h @@ -78,8 +78,6 @@ class ServerContext { void AddInitialMetadata(const grpc::string& key, const grpc::string& value); void AddTrailingMetadata(const grpc::string& key, const grpc::string& value); - bool IsCancelled(); - const std::multimap<grpc::string, grpc::string>& client_metadata() { return client_metadata_; } @@ -112,7 +110,6 @@ class ServerContext { std::chrono::system_clock::time_point deadline_; grpc_call* call_; - CompletionQueue* cq_; bool sent_initial_metadata_; std::multimap<grpc::string, grpc::string> client_metadata_; std::multimap<grpc::string, grpc::string> initial_metadata_; |