TransportFactory will provide a runtime.ClientTransport given a TransportConfig
| 39 | |
| 40 | // TransportFactory will provide a runtime.ClientTransport given a TransportConfig |
| 41 | type TransportFactory interface { |
| 42 | New(config TransportConfig) (runtime.ClientTransport, error) |
| 43 | } |
| 44 | |
| 45 | // TransportFactoryF is a func version of TransportFactory |
| 46 | type TransportFactoryF func(config TransportConfig) (runtime.ClientTransport, error) |
no outgoing calls
no test coverage detected