All Classes and Interfaces
Class
Description
Merges the byte content of a list of files into a single file.
Policies for when the target file already exists
A wrapper whose close() method is a noop.
Workaround for HADOOP-17453: read(bts, off, len) with off != 0 is broken in several version of BZip2Codec
Invoking read with a non-zero offset creates a in intermediate buffer to which is read with a zero offset
The content of the intermediate buffer is then copied to the requesting buffer bts at the appropriate offset.
Helper class for use with
FileChannel.transferFrom(java.nio.channels.ReadableByteChannel, long, long)
Maps length bytes of the given path to some target with the given offset.A replacement for Channels.newChannel with the following changes for
interoperability with hadoop and our GenericRecordReader:
- Does not close the underlying stream on interrupt
- This implementation's read method just delegates to the input stream
(without additional buffering / repeated reads).
Readable byte channel wrapper that before every read checks for an
end-of-file (eof) condition.
ReadableByteChannel from an InputStream without closing the stream on interrupt as
Channels.newChannel does.
A utility class to open (close-shielded) input/output streams
from stdout, stderr and stdin.
Symlink strategy that creates ordinary files whose content is the string
representation of the target path being linked to.
Symlink strategy based on the standard methods
Files.createSymbolicLink(Path, Path, java.nio.file.attribute.FileAttribute...)
and
Files.readSymbolicLink(Path)Interface meant for synchronizing the state of this object with some kind storage
(another object, a file, a database, etc).