| 141 | } |
| 142 | |
| 143 | Status PyFlightServer::DoExchange( |
| 144 | const arrow::flight::ServerCallContext& context, |
| 145 | std::unique_ptr<arrow::flight::FlightMessageReader> reader, |
| 146 | std::unique_ptr<arrow::flight::FlightMessageWriter> writer) { |
| 147 | return SafeCallIntoPython([&] { |
| 148 | const Status status = |
| 149 | vtable_.do_exchange(server_.obj(), context, std::move(reader), std::move(writer)); |
| 150 | RETURN_NOT_OK(CheckPyError()); |
| 151 | return status; |
| 152 | }); |
| 153 | } |
| 154 | |
| 155 | Status PyFlightServer::DoAction(const arrow::flight::ServerCallContext& context, |
| 156 | const arrow::flight::Action& action, |
nothing calls this directly
no test coverage detected