Examples of highCompressor()


Examples of net.jpountz.lz4.LZ4Factory.highCompressor()

        final LZ4Factory lz4Factory = LZ4Factory.fastestInstance();

        Boolean use_hc = Boolean.parseBoolean(args.get(USE_HC));

        if (use_hc){
            compressor = lz4Factory.highCompressor();
        } else {
            compressor = lz4Factory.fastCompressor();
        }

        decompressor = lz4Factory.decompressor();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.