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

Method Finish

cpp/src/arrow/flight/transport.cc:46–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44Status TransportDataStream::WritesDone() { return Status::OK(); }
45bool ClientDataStream::ReadPutMetadata(std::shared_ptr<Buffer>*) { return false; }
46Status ClientDataStream::Finish(Status st) {
47 auto server_status = DoFinish();
48 if (server_status.ok()) return st;
49
50 return Status::FromDetailAndArgs(server_status.code(), server_status.detail(),
51 server_status.message(),
52 ". Client context: ", st.ToString());
53}
54
55Status ClientTransport::Authenticate(const FlightCallOptions& options,
56 std::unique_ptr<ClientAuthHandler> auth_handler) {

Callers 8

ReadNextMessageMethod · 0.45
NextMethod · 0.45
ReadMetadataMethod · 0.45
BeginMethod · 0.45
DoneWritingMethod · 0.45
CloseMethod · 0.45
RunExchangeTotalMethod · 0.45

Calls 4

FromDetailAndArgsFunction · 0.85
okMethod · 0.45
codeMethod · 0.45
ToStringMethod · 0.45

Tested by 1

RunExchangeTotalMethod · 0.36