Example usage for org.apache.commons.compress.archivers.zip ScatterZipOutputStream ScatterZipOutputStream

List of usage examples for org.apache.commons.compress.archivers.zip ScatterZipOutputStream ScatterZipOutputStream

Introduction

In this page you can find the example usage for org.apache.commons.compress.archivers.zip ScatterZipOutputStream ScatterZipOutputStream.

Prototype

public ScatterZipOutputStream(final ScatterGatherBackingStore backingStore,
            final StreamCompressor streamCompressor) 

Source Link

Usage

From source file:org.codehaus.plexus.archiver.zip.ConcurrentJarCreator.java

public static ScatterZipOutputStream createDeferred(
        ScatterGatherBackingStoreSupplier scatterGatherBackingStoreSupplier) throws IOException {
    ScatterGatherBackingStore bs = scatterGatherBackingStoreSupplier.get();
    StreamCompressor sc = StreamCompressor.create(Deflater.DEFAULT_COMPRESSION, bs);
    return new ScatterZipOutputStream(bs, sc);
}