Package com.ning.compress.lzf.impl

Examples of com.ning.compress.lzf.impl.VanillaChunkEncoder


     * @param totalLength Expected total length of content to compress; only matters
     *    for content that is smaller than maximum chunk size (64k), to optimize
     *    encoding hash tables
     */
    public static ChunkEncoder safeInstance(int totalLength) {
        return new VanillaChunkEncoder(totalLength);
    }
View Full Code Here


     *    for content that is smaller than maximum chunk size (64k), to optimize
     *    encoding hash tables
   * @param bufferRecycler The BufferRecycler instance
     */
    public static ChunkEncoder safeInstance(int totalLength, BufferRecycler bufferRecycler) {
        return new VanillaChunkEncoder(totalLength, bufferRecycler);
    }
View Full Code Here

TOP

Related Classes of com.ning.compress.lzf.impl.VanillaChunkEncoder

Copyright © 2018 www.massapicom. 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.