Uses of Class
org.apache.avro.io.BinaryEncoder

Packages that use BinaryEncoder
org.apache.avro.io Utilities for Encoding and Decoding Avro data. 
 

Uses of BinaryEncoder in org.apache.avro.io
 

Subclasses of BinaryEncoder in org.apache.avro.io
 class BlockingBinaryEncoder
          A BinaryEncoder implementation that writes large arrays and maps as a sequence of blocks.
 class BufferedBinaryEncoder
          An Encoder for Avro's binary encoding.
 class DirectBinaryEncoder
          An Encoder for Avro's binary encoding that does not buffer output.
 

Methods in org.apache.avro.io that return BinaryEncoder
 BinaryEncoder EncoderFactory.binaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 BinaryEncoder EncoderFactory.blockingBinaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 BinaryEncoder EncoderFactory.directBinaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 

Methods in org.apache.avro.io with parameters of type BinaryEncoder
 BinaryEncoder EncoderFactory.binaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 BinaryEncoder EncoderFactory.blockingBinaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 BinaryEncoder EncoderFactory.directBinaryEncoder(OutputStream out, BinaryEncoder reuse)
          Creates or reinitializes a BinaryEncoder with the OutputStream provided as the destination for written data.
 



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.