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

Method DoAction

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

Source from the content-addressed store, hash-verified

153}
154
155Status PyFlightServer::DoAction(const arrow::flight::ServerCallContext& context,
156 const arrow::flight::Action& action,
157 std::unique_ptr<arrow::flight::ResultStream>* result) {
158 return SafeCallIntoPython([&] {
159 const Status status = vtable_.do_action(server_.obj(), context, action, result);
160 RETURN_NOT_OK(CheckPyError());
161 return status;
162 });
163}
164
165Status PyFlightServer::ListActions(const arrow::flight::ServerCallContext& context,
166 std::vector<arrow::flight::ActionType>* actions) {

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
do_actionMethod · 0.45

Tested by

no test coverage detected