Uses of Interface
com.pervasive.datarush.io.InputStreamSupplier
-
Packages that use InputStreamSupplier Package Description com.pervasive.datarush.io Provides classes and interfaces performing file-like I/O operations.com.pervasive.datarush.operators.io Provides base file I/O components including encoders and decoders. -
-
Uses of InputStreamSupplier in com.pervasive.datarush.io
Methods in com.pervasive.datarush.io that return InputStreamSupplier Modifier and Type Method Description static InputStreamSupplier
InputStreamSuppliers. combine(FileClient client, List<Path> paths, boolean ignoreNonExistant)
Creates an InputStreamSupplier that will return an input stream consisting of the streams of each of the sources, combined together.static InputStreamSupplier
InputStreamSuppliers. concat(FileClient client, List<Path> paths)
Creates an InputStreamSupplier that will return an input stream consisting of the streams of each of the paths, concatenated together.static InputStreamSupplier
InputStreamSuppliers. concat(FileClient client, List<Path> paths, boolean ignoreNonExistent)
Creates an InputStreamSupplier that will return an input stream consisting of the streams of each of the paths, concatenated together.static InputStreamSupplier
InputStreamSuppliers. concat(List<? extends InputStreamSupplier> sources)
Creates an InputStreamSupplier that will return an input stream consisting of the streams of each of the sources, concatenated together.static InputStreamSupplier
InputStreamSuppliers. path(FileClient client, Path path)
Returns an InputStreamSupplier that will open the specified path.static InputStreamSupplier
InputStreamSuppliers. path(FileClient client, Path path, boolean ignoreNonExistent)
Returns an InputStreamSupplier that will open the specified path.Method parameters in com.pervasive.datarush.io with type arguments of type InputStreamSupplier Modifier and Type Method Description static InputStreamSupplier
InputStreamSuppliers. concat(List<? extends InputStreamSupplier> sources)
Creates an InputStreamSupplier that will return an input stream consisting of the streams of each of the sources, concatenated together. -
Uses of InputStreamSupplier in com.pervasive.datarush.operators.io
Subinterfaces of InputStreamSupplier in com.pervasive.datarush.operators.io Modifier and Type Interface Description interface
ByteSource
An abstract source of bytes.Classes in com.pervasive.datarush.operators.io that implement InputStreamSupplier Modifier and Type Class Description class
BasicByteSource
A data source identified by aPath
.class
ConcatenatedByteSource
A data source which concatenates multiple sources.class
GlobbingByteSource
A data source representing the concatenation of all files matching a pattern.
-