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 SummaryFields inherited from class org.apache.arrow.adapter.avro.consumers.BaseAvroConsumercurrentIndex, vector
- 
Constructor SummaryConstructorsConstructorDescriptionAvroMapConsumer(MapVector vector, Consumer delegate) Instantiate a AvroMapConsumer.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Close this consumer when occurs exception to avoid potential leak.voidconsume(org.apache.avro.io.Decoder decoder) Consume a specific type value from avro decoder and write it to vector.booleanresetValueVector(MapVector vector) Reset the vector within consumer for partial read purpose.Methods inherited from class org.apache.arrow.adapter.avro.consumers.BaseAvroConsumeraddNull, getVector, setPosition
- 
Constructor Details- 
AvroMapConsumerInstantiate a AvroMapConsumer.
 
- 
- 
Method Details- 
consumeDescription copied from interface:ConsumerConsume a specific type value from avro decoder and write it to vector.- Parameters:
- decoder- avro decoder to read data
- Throws:
- IOException- on error
 
- 
closeDescription copied from interface:ConsumerClose this consumer when occurs exception to avoid potential leak.- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Consumer<MapVector>
- Overrides:
- closein class- BaseAvroConsumer<MapVector>
- Throws:
- Exception
 
- 
resetValueVectorDescription copied from interface:ConsumerReset the vector within consumer for partial read purpose.- Specified by:
- resetValueVectorin interface- Consumer<MapVector>
- Overrides:
- resetValueVectorin class- BaseAvroConsumer<MapVector>
- Returns:
- true if reset is successful, false if reset is not needed.
 
 
-