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

Function garrow_stream_decoder_reset

c_glib/arrow-glib/decoder.cpp:481–486  ·  view source on GitHub ↗

* garrow_stream_decoder_reset: * @decoder: A #GArrowStreamDecoder. * @error: (nullable): Return location for a #GError or %NULL. * * Reset the internal status. * * You can reuse this decoder for new stream after calling this. * * Returns: %TRUE on success, %FALSE if there was an error. * * Since: 18.0.0 */

Source from the content-addressed store, hash-verified

479 * Since: 18.0.0
480 */
481gboolean
482garrow_stream_decoder_reset(GArrowStreamDecoder *decoder, GError **error)
483{
484 auto arrow_decoder = garrow_stream_decoder_get_raw(decoder);
485 return garrow::check(error, arrow_decoder->Reset(), "[stream-decoder][reset]");
486}
487
488/**
489 * garrow_stream_decoder_get_schema:

Callers

nothing calls this directly

Calls 3

checkFunction · 0.70
ResetMethod · 0.45

Tested by

no test coverage detected