Class AvroMapConsumer
java.lang.Object
org.apache.arrow.adapter.avro.consumers.BaseAvroConsumer<MapVector>
org.apache.arrow.adapter.avro.consumers.AvroMapConsumer
- All Implemented Interfaces:
AutoCloseable
,Consumer<MapVector>
Consumer which consume map type values from avro decoder. Write the data to
MapVector
.-
Field Summary
Fields inherited from class org.apache.arrow.adapter.avro.consumers.BaseAvroConsumer
currentIndex, vector
-
Constructor Summary
ConstructorDescriptionAvroMapConsumer
(MapVector vector, Consumer delegate) Instantiate a AvroMapConsumer. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close this consumer when occurs exception to avoid potential leak.void
consume
(org.apache.avro.io.Decoder decoder) Consume a specific type value from avro decoder and write it to vector.boolean
resetValueVector
(MapVector vector) Reset the vector within consumer for partial read purpose.Methods inherited from class org.apache.arrow.adapter.avro.consumers.BaseAvroConsumer
addNull, getVector, setPosition
-
Constructor Details
-
AvroMapConsumer
Instantiate a AvroMapConsumer.
-
-
Method Details
-
consume
Description copied from interface:Consumer
Consume a specific type value from avro decoder and write it to vector.- Parameters:
decoder
- avro decoder to read data- Throws:
IOException
- on error
-
close
Description copied from interface:Consumer
Close this consumer when occurs exception to avoid potential leak.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceConsumer<MapVector>
- Overrides:
close
in classBaseAvroConsumer<MapVector>
- Throws:
Exception
-
resetValueVector
Description copied from interface:Consumer
Reset the vector within consumer for partial read purpose.- Specified by:
resetValueVector
in interfaceConsumer<MapVector>
- Overrides:
resetValueVector
in classBaseAvroConsumer<MapVector>
- Returns:
- true if reset is successful, false if reset is not needed.
-