Class ReadAheadInputStream.Builder

All Implemented Interfaces:
IOSupplier<ReadAheadInputStream>
Enclosing class:
ReadAheadInputStream

Builds a new ReadAheadInputStream.

For example:


 ReadAheadInputStream s = ReadAheadInputStream.builder()
   .setPath(path)
   .setExecutorService(Executors.newSingleThreadExecutor(ReadAheadInputStream::newThread))
   .get();
 
Since:
2.12.0
See Also: