Uses of Interface
org.pipecraft.pipes.serialization.DecoderFactory
-
Packages that use DecoderFactory Package Description org.pipecraft.pipes.serialization org.pipecraft.pipes.sync.inter org.pipecraft.pipes.sync.source org.pipecraft.pipes.utils.multi -
-
Uses of DecoderFactory in org.pipecraft.pipes.serialization
Subinterfaces of DecoderFactory in org.pipecraft.pipes.serialization Modifier and Type Interface Description interfaceCodecFactory<T>A factory of both encoders and decodersClasses in org.pipecraft.pipes.serialization that implement DecoderFactory Modifier and Type Class Description classAvroCodecFactory<T>A codec factory for AVRO format.classDelegatingCodecFactory<T>Wraps a given encoder and decoder factories, and delegates encoding/decoding creation requests to them.classSimpleDecoderFactory<T>A simple generic decoder factory implementation.classTxtCodecFactory<T>A textual encoder-decoderclassTxtDecoderFactory<T>AnDecoderFactorythat decodes items from a textual form, assuming that items are delimited by "\n".Fields in org.pipecraft.pipes.serialization declared as DecoderFactory Modifier and Type Field Description static DecoderFactory<Integer>IntDecoders. INT16_BE_DECODER_FACTORYstatic DecoderFactory<Integer>IntDecoders. INT16_LE_DECODER_FACTORYstatic DecoderFactory<Integer>IntDecoders. INT32_BE_DECODER_FACTORYstatic DecoderFactory<Integer>IntDecoders. INT32_LE_DECODER_FACTORYstatic DecoderFactory<Long>IntDecoders. INT64_BE_DECODER_FACTORYstatic DecoderFactory<Long>IntDecoders. INT64_LE_DECODER_FACTORYMethods in org.pipecraft.pipes.serialization that return DecoderFactory Modifier and Type Method Description static <R> DecoderFactory<R>AvroDecoder. getFactory(Class<R> clazz)static <R> DecoderFactory<R>CSVDecoder. getFactory(FailableFunction<String[],R,ValidationPipeException> itemDetextualizer)static <R> DecoderFactory<R>CSVDecoder. getFactory(FailableFunction<String[],R,ValidationPipeException> itemDetextualizer, Charset charset, char delimiter, int rowsToSkip)Constructors in org.pipecraft.pipes.serialization with parameters of type DecoderFactory Constructor Description DelegatingCodecFactory(EncoderFactory<T> encoder, DecoderFactory<T> decoder)Constructor -
Uses of DecoderFactory in org.pipecraft.pipes.sync.inter
Constructors in org.pipecraft.pipes.sync.inter with parameters of type DecoderFactory Constructor Description SortPipe(Pipe<T> input, int maxItemsInMemory, File tmpFolder, EncoderFactory<? super T> encoderFactory, DecoderFactory<T> decoderFactory, Comparator<T> comparator)Constructor Uses compression on temp files.SortPipe(Pipe<T> input, int maxItemsInMemory, File tmpFolder, EncoderFactory<? super T> encoderFactory, DecoderFactory<T> decoderFactory, Comparator<T> comparator, Compression tempFilesCompression)Constructor -
Uses of DecoderFactory in org.pipecraft.pipes.sync.source
Constructors in org.pipecraft.pipes.sync.source with parameters of type DecoderFactory Constructor Description BinInputReaderPipe(File inputFile, FileReadOptions options, DecoderFactory<T> decoderFactory)ConstructorBinInputReaderPipe(File inputFile, DecoderFactory<T> decoderFactory)ConstructorBinInputReaderPipe(InputStream is, DecoderFactory<T> decoderFactory, int bufferSize, long sizeBytes, Compression compression)ConstructorBinInputReaderPipe(FailableInterruptibleSupplier<SizedInputStream,IOException> isCreator, DecoderFactory<T> decoderFactory, int bufferSize, Compression compression)ConstructorBinInputReaderPipe(SizedInputStream is, DecoderFactory<T> decoderFactory, FileReadOptions readOptions)Constructor -
Uses of DecoderFactory in org.pipecraft.pipes.utils.multi
Methods in org.pipecraft.pipes.utils.multi with parameters of type DecoderFactory Modifier and Type Method Description static <T> LocalMultiFileReaderConfig.Builder<T>LocalMultiFileReaderConfig. builder(DecoderFactory<T> decoderFactory)Creates a builder set up with the given file data decoder and additional defaults.static <T> LocalMultiFileReaderConfig.Builder<T>LocalMultiFileReaderConfig. builder(DecoderFactory<T> decoderFactory, FileReadOptions readOptions)Creates a builder set up with the given file data decoder and additional defaults.static <T,B>
StorageMultiFileReaderConfig.Builder<T,B>StorageMultiFileReaderConfig. builder(DecoderFactory<T> decoderFactory)Creates a builder set up with the given file data decoder and additional defaults.static <T,B>
StorageMultiFileReaderConfig.Builder<T,B>StorageMultiFileReaderConfig. builder(DecoderFactory<T> decoderFactory, FileReadOptions readOptions)Creates a builder set up with the given file data decoder and additional defaults.
-