Class AvroUnionsConsumer
java.lang.Object
org.apache.arrow.adapter.avro.consumers.BaseAvroConsumer<UnionVector>
org.apache.arrow.adapter.avro.consumers.AvroUnionsConsumer
- All Implemented Interfaces:
AutoCloseable
,Consumer<UnionVector>
Consumer which consume unions type values from avro decoder. Write the data to
UnionVector
.-
Field Summary
Fields inherited from class org.apache.arrow.adapter.avro.consumers.BaseAvroConsumer
currentIndex, vector
-
Constructor Summary
ConstructorDescriptionAvroUnionsConsumer
(UnionVector vector, Consumer[] delegates, Types.MinorType[] types) Instantiate an AvroUnionConsumer. -
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
(UnionVector 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
-
AvroUnionsConsumer
Instantiate an AvroUnionConsumer.
-
-
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<UnionVector>
- Overrides:
close
in classBaseAvroConsumer<UnionVector>
- Throws:
Exception
-
resetValueVector
Description copied from interface:Consumer
Reset the vector within consumer for partial read purpose.- Specified by:
resetValueVector
in interfaceConsumer<UnionVector>
- Overrides:
resetValueVector
in classBaseAvroConsumer<UnionVector>
- Returns:
- true if reset is successful, false if reset is not needed.
-