MCPcopy Create free account
hub / github.com/apache/arrow / ListActions

Method ListActions

python/pyarrow/src/arrow/python/flight.cc:165–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165Status 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
174Status PyFlightServer::ServeWithSignals() {
175 // Respect the current Python settings, i.e. only interrupt the server if there is

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
list_actionsMethod · 0.45

Tested by

no test coverage detected