Uses of Interface
org.pipecraft.pipes.serialization.ItemDecoder
-
Packages that use ItemDecoder Package Description org.pipecraft.pipes.serialization -
-
Uses of ItemDecoder in org.pipecraft.pipes.serialization
Classes in org.pipecraft.pipes.serialization that implement ItemDecoder Modifier and Type Class Description classAbstractInputStreamItemDecoder<T>A base class for item decoders whose pre-processing on the input streams consists only on buffering and decompression, providing the transformed input stream for the decode method to work on.classAvroDecoder<T>AnItemDecoderthat decodes objects encoded in avro format.classCSVDecoder<T>AnItemDecoderthat decodes CSV rows.Methods in org.pipecraft.pipes.serialization that return ItemDecoder Modifier and Type Method Description ItemDecoder<T>AvroCodecFactory. newDecoder(InputStream is, FileReadOptions readOptions)default ItemDecoder<T>DecoderFactory. newDecoder(InputStream is)ItemDecoder<T>DecoderFactory. newDecoder(InputStream is, FileReadOptions readOptions)ItemDecoder<T>DelegatingCodecFactory. newDecoder(InputStream is, FileReadOptions readOptions)ItemDecoder<T>SimpleDecoderFactory. newDecoder(InputStream is, FileReadOptions readOptions)ItemDecoder<T>TxtDecoderFactory. newDecoder(InputStream is, FileReadOptions readOptions)default ItemDecoder<T>ByteArrayDecoder. newFixedRecSizeDecoder(InputStream is, FileReadOptions readOptions, int recSize)Returns an efficientItemDecoderbased on this byte array decoder, assuming a fixed record size.
-