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

cn.nukkit.utils.ZlibProvider Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.utils;

import java.io.IOException;

/**
 * @author ScraMTeam
 */
interface ZlibProvider {
    byte[] deflate(byte[][] data, int level) throws IOException;

    byte[] deflate(byte[] data, int level) throws IOException;

    byte[] inflate(byte[] data, int maxSize) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy