* 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 */
| 820 | * Since: 8.0.0 |
| 821 | */ |
| 822 | gboolean |
| 823 | gaflight_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: |
nothing calls this directly
no test coverage detected