| 129 | } |
| 130 | |
| 131 | Status PyFlightServer::DoPut( |
| 132 | const arrow::flight::ServerCallContext& context, |
| 133 | std::unique_ptr<arrow::flight::FlightMessageReader> reader, |
| 134 | std::unique_ptr<arrow::flight::FlightMetadataWriter> writer) { |
| 135 | return SafeCallIntoPython([&] { |
| 136 | const Status status = |
| 137 | vtable_.do_put(server_.obj(), context, std::move(reader), std::move(writer)); |
| 138 | RETURN_NOT_OK(CheckPyError()); |
| 139 | return status; |
| 140 | }); |
| 141 | } |
| 142 | |
| 143 | Status PyFlightServer::DoExchange( |
| 144 | const arrow::flight::ServerCallContext& context, |
nothing calls this directly
no test coverage detected