aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-07-19 22:31:04 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-07-19 22:31:04 -0700
commitbf6abeef3d6143e52ded1f3dbaf4a2211d236ba2 (patch)
tree60a65853a3687afc8e04ed166c9beff2249f97a2 /include/grpc++
parentf08b067cdbb4000cd997f1aa0641b97db16ebaf8 (diff)
Remove experimental prefix
Diffstat (limited to 'include/grpc++')
-rw-r--r--include/grpc++/channel_arguments.h5
-rw-r--r--include/grpc++/client_context.h5
2 files changed, 4 insertions, 6 deletions
diff --git a/include/grpc++/channel_arguments.h b/include/grpc++/channel_arguments.h
index 7b17830a86..862c292180 100644
--- a/include/grpc++/channel_arguments.h
+++ b/include/grpc++/channel_arguments.h
@@ -57,11 +57,10 @@ class ChannelArguments {
// grpc specific channel argument setters
// Set target name override for SSL host name checking.
void SetSslTargetNameOverride(const grpc::string& name);
- // TODO(yangg) add flow control options
+ // TODO(yangg) add flow control optionsc
// Set the compression algorithm for the channel.
- void _Experimental_SetCompressionAlgorithm(
- grpc_compression_algorithm algorithm);
+ void SetCompressionAlgorithm(grpc_compression_algorithm algorithm);
// Generic channel argument setters. Only for advanced use cases.
void SetInt(const grpc::string& key, int value);
diff --git a/include/grpc++/client_context.h b/include/grpc++/client_context.h
index 6b8d7211d1..9df76699d2 100644
--- a/include/grpc++/client_context.h
+++ b/include/grpc++/client_context.h
@@ -110,12 +110,11 @@ class ClientContext {
creds_ = creds;
}
- grpc_compression_algorithm _experimental_get_compression_algorithm() const {
+ grpc_compression_algorithm get_compression_algorithm() const {
return compression_algorithm_;
}
- void _experimental_set_compression_algorithm(
- grpc_compression_algorithm algorithm);
+ void set_compression_algorithm(grpc_compression_algorithm algorithm);
std::shared_ptr<const AuthContext> auth_context() const;