Class BufferedFileIO

  • All Implemented Interfaces:
    AutoCloseable, FileIO
    Direct Known Subclasses:
    WriteOnlyZipFileIO

    public class BufferedFileIO
    extends FileIODecorator
    The class implements a FileIO that allows to write bytes to the underlying FileIO without necessarily causing a call to the underlying system for each byte written. This IO writes to underlying storage whole buffer thus reduces number of system calls. It doesn't support reading or random access. It is not designed for writing concurrently from several threads.