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

Function gaflight_call_options_add_header

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

* gaflight_call_options_add_header: * @options: A #GAFlightCallOptions. * @name: A header name. * @value: A header value. * * Add a header. * * Since: 9.0.0 */

Source from the content-addressed store, hash-verified

310 * Since: 9.0.0
311 */
312void
313gaflight_call_options_add_header(GAFlightCallOptions *options,
314 const gchar *name,
315 const gchar *value)
316{
317 auto flight_options = gaflight_call_options_get_raw(options);
318 flight_options->headers.emplace_back(name, value);
319}
320
321/**
322 * gaflight_call_options_clear_headers:

Callers

nothing calls this directly

Calls 2

emplace_backMethod · 0.80

Tested by

no test coverage detected