Uses of Class
org.apache.commons.compress.archivers.zip.ScatterZipOutputStream
-
Packages that use ScatterZipOutputStream Package Description org.apache.commons.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format. -
-
Uses of ScatterZipOutputStream in org.apache.commons.compress.archivers.zip
Fields in org.apache.commons.compress.archivers.zip with type parameters of type ScatterZipOutputStream Modifier and Type Field Description private java.util.Deque<java.util.concurrent.Future<? extends ScatterZipOutputStream>>
ParallelScatterZipCreator. futures
private java.util.Deque<ScatterZipOutputStream>
ParallelScatterZipCreator. streams
private java.lang.ThreadLocal<ScatterZipOutputStream>
ParallelScatterZipCreator. tlScatterStreams
Methods in org.apache.commons.compress.archivers.zip that return ScatterZipOutputStream Modifier and Type Method Description private ScatterZipOutputStream
ParallelScatterZipCreator. createDeferred(ScatterGatherBackingStoreSupplier scatterGatherBackingStoreSupplier)
static ScatterZipOutputStream
ScatterZipOutputStream. fileBased(java.io.File file)
Create aScatterZipOutputStream
with default compression level that is backed by a filestatic ScatterZipOutputStream
ScatterZipOutputStream. fileBased(java.io.File file, int compressionLevel)
Create aScatterZipOutputStream
that is backed by a fileMethods in org.apache.commons.compress.archivers.zip that return types with arguments of type ScatterZipOutputStream Modifier and Type Method Description java.util.concurrent.Callable<ScatterZipOutputStream>
ParallelScatterZipCreator. createCallable(ZipArchiveEntryRequestSupplier zipArchiveEntryRequestSupplier)
Create a callable that will compress archive entry supplied byZipArchiveEntryRequestSupplier
.java.util.concurrent.Callable<ScatterZipOutputStream>
ParallelScatterZipCreator. createCallable(ZipArchiveEntry zipArchiveEntry, InputStreamSupplier source)
Create a callable that will compress the given archive entry.Method parameters in org.apache.commons.compress.archivers.zip with type arguments of type ScatterZipOutputStream Modifier and Type Method Description void
ParallelScatterZipCreator. submitStreamAwareCallable(java.util.concurrent.Callable<? extends ScatterZipOutputStream> callable)
Submit a callable for compression.Constructors in org.apache.commons.compress.archivers.zip with parameters of type ScatterZipOutputStream Constructor Description ZipEntryWriter(ScatterZipOutputStream scatter)
-