| 159 | TransportRegistry::TransportRegistry() { impl_ = std::make_unique<Impl>(); } |
| 160 | TransportRegistry::~TransportRegistry() = default; |
| 161 | arrow::Result<std::unique_ptr<ClientTransport>> TransportRegistry::MakeClient( |
| 162 | const std::string& scheme) const { |
| 163 | return impl_->MakeClient(scheme); |
| 164 | } |
| 165 | arrow::Result<std::unique_ptr<ServerTransport>> TransportRegistry::MakeServer( |
| 166 | const std::string& scheme, FlightServerBase* base, |
| 167 | std::shared_ptr<MemoryManager> memory_manager) const { |