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

Function gaflight_client_close

c_glib/arrow-flight-glib/client.cpp:822–828  ·  view source on GitHub ↗

* gaflight_client_close: * @client: A #GAFlightClient. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE if there was an error. * * Since: 8.0.0 */

Source from the content-addressed store, hash-verified

820 * Since: 8.0.0
821 */
822gboolean
823gaflight_client_close(GAFlightClient *client, GError **error)
824{
825 auto flight_client = gaflight_client_get_raw(client);
826 auto status = flight_client->Close();
827 return garrow::check(error, status, "[flight-client][close]");
828}
829
830/**
831 * gaflight_client_authenticate_basic_token:

Callers

nothing calls this directly

Calls 3

gaflight_client_get_rawFunction · 0.85
checkFunction · 0.50
CloseMethod · 0.45

Tested by

no test coverage detected