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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ByteSource
An abstract source of bytes.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicByteSource
A data source identified by a
Path . |
class |
ConcatenatedByteSource
A data source which concatenates multiple sources.
|
class |
GlobbingByteSource
A data source representing the concatenation of
all files matching a pattern.
|
Copyright © 2016 Actian Corporation. All rights reserved.