| 163 | } |
| 164 | |
| 165 | Status PyFlightServer::ListActions(const arrow::flight::ServerCallContext& context, |
| 166 | std::vector<arrow::flight::ActionType>* actions) { |
| 167 | return SafeCallIntoPython([&] { |
| 168 | const Status status = vtable_.list_actions(server_.obj(), context, actions); |
| 169 | RETURN_NOT_OK(CheckPyError()); |
| 170 | return status; |
| 171 | }); |
| 172 | } |
| 173 | |
| 174 | Status PyFlightServer::ServeWithSignals() { |
| 175 | // Respect the current Python settings, i.e. only interrupt the server if there is |
nothing calls this directly
no test coverage detected