Example usage for org.apache.commons.compress.parallel ScatterGatherBackingStoreSupplier get

List of usage examples for org.apache.commons.compress.parallel ScatterGatherBackingStoreSupplier get

Introduction

In this page you can find the example usage for org.apache.commons.compress.parallel ScatterGatherBackingStoreSupplier get.

Prototype

ScatterGatherBackingStore get() throws IOException;

Source Link

Document

Create a ScatterGatherBackingStore.

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);
}