diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/create_channel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/grpc++/create_channel.h b/include/grpc++/create_channel.h index eadabda359..80ca0c4dc4 100644 --- a/include/grpc++/create_channel.h +++ b/include/grpc++/create_channel.h @@ -43,8 +43,10 @@ namespace grpc { class ChannelArguments; class ChannelInterface; -std::shared_ptr<ChannelInterface> CreateChannel(const grpc::string& target, - const ChannelArguments& args); +// Deprecation warning: This function will soon be deleted +// (See pull request #711) +std::shared_ptr<ChannelInterface> CreateChannelDeprecated( + const grpc::string& target, const ChannelArguments& args); // If creds does not hold an object or is invalid, a lame channel is returned. std::shared_ptr<ChannelInterface> CreateChannel( |