added Experimental in comments

For "struct Port" and friends, since they are now protected instead of
private.
pull/14517/head
makdharma 7 years ago
parent 606742d30c
commit dbf4b71a00
  1. 2
      include/grpcpp/server_builder.h

@ -211,12 +211,14 @@ class ServerBuilder {
ServerBuilder& EnableWorkaround(grpc_workaround_list id);
protected:
/// Experimental, to be deprecated
struct Port {
grpc::string addr;
std::shared_ptr<ServerCredentials> creds;
int* selected_port;
};
/// Experimental, to be deprecated
typedef std::unique_ptr<grpc::string> HostString;
struct NamedService {
explicit NamedService(Service* s) : service(s) {}

Loading…
Cancel
Save