All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jarvis.cache.compress.ICompressor Maven / Gradle / Ivy

package com.jarvis.cache.compress;

import java.io.ByteArrayInputStream;

/**
 *
 */
public interface ICompressor {

    /**
     * 压缩
     *
     * @param bais ByteArrayInputStream
     * @return 压缩后数据
     * @throws Exception 异常
     */
    byte[] compress(ByteArrayInputStream bais) throws Exception;

    /**
     * 解压
     *
     * @param bais ByteArrayInputStream
     * @return 解压后数据
     * @throws Exception 异常
     */
    byte[] decompress(ByteArrayInputStream bais) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy