| 137 | std::atomic<FlightServerBase::Impl*> FlightServerBase::Impl::running_instance_; |
| 138 | |
| 139 | FlightServerOptions::FlightServerOptions(const Location& location_) |
| 140 | : location(location_), |
| 141 | auth_handler(nullptr), |
| 142 | tls_certificates(), |
| 143 | verify_client(false), |
| 144 | root_certificates(), |
| 145 | middleware(), |
| 146 | memory_manager(CPUDevice::Instance()->default_memory_manager()), |
| 147 | builder_hook(nullptr) {} |
| 148 | |
| 149 | FlightServerOptions::~FlightServerOptions() = default; |
| 150 |
nothing calls this directly
no test coverage detected