| 113 | { |
| 114 | public: |
| 115 | Connection( |
| 116 | const std::string& uri, |
| 117 | const std::shared_ptr<::grpc::ChannelCredentials>& credentials = |
| 118 | ::grpc::InsecureChannelCredentials()) |
| 119 | : channel(::grpc::CreateChannel(uri, credentials)) {} |
| 120 | |
| 121 | explicit Connection(std::shared_ptr<::grpc::Channel> _channel) |
| 122 | : channel(std::move(_channel)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected