Uses of Class
org.apache.avro.io.BinaryEncoder
Package
Description
A container file for Avro data.
Utilities for Encoding and Decoding Avro data.
Generate specific Java classes for schemas and protocols.
-
Uses of BinaryEncoder in org.apache.avro.file
Modifier and TypeMethodDescriptionDataFileWriter.setEncoder
(Function<OutputStream, BinaryEncoder> initEncoderFunc) Allows setting a different encoder than the default DirectBinaryEncoder. -
Uses of BinaryEncoder in org.apache.avro.io
Modifier and TypeClassDescriptionclass
ABinaryEncoder
implementation that writes large arrays and maps as a sequence of blocks.class
AnEncoder
for Avro's binary encoding that does not buffer output.class
AnEncoder
for Avro's binary encoding.class
AnEncoder
for Avro's binary encoding that does not buffer output.Modifier and TypeMethodDescriptionEncoderFactory.binaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.blockingBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.blockingDirectBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBlockingDirectBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.directBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data.Modifier and TypeMethodDescriptionEncoderFactory.binaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.blockingBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.blockingDirectBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBlockingDirectBinaryEncoder
with the OutputStream provided as the destination for written data.EncoderFactory.directBinaryEncoder
(OutputStream out, BinaryEncoder reuse) Creates or reinitializes aBinaryEncoder
with the OutputStream provided as the destination for written data. -
Uses of BinaryEncoder in org.apache.avro.specific
Modifier and TypeMethodDescriptionstatic BinaryEncoder
SpecificData.getEncoder
(ObjectOutput out) Runtime utility used by generated classes.