Class DefaultBackingStoreSupplier

java.lang.Object
org.apache.commons.compress.archivers.zip.DefaultBackingStoreSupplier
All Implemented Interfaces:
ScatterGatherBackingStoreSupplier

Implements ScatterGatherBackingStoreSupplier using a temporary folder.

For example:

 final Path dir = Paths.get("target/custom-temp-dir");
 Files.createDirectories(dir);
 final ParallelScatterZipCreator zipCreator = new ParallelScatterZipCreator(Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()),
         new DefaultBackingStoreSupplier(dir));
 
Since:
1.23