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

org.rx.io.Compressible Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.io;

import java.io.Serializable;

public interface Compressible extends Serializable {
    short STREAM_MAGIC = -21266;
    short STREAM_VERSION = 1;
    int MIN_LENGTH = 1000;

    default boolean enableCompress() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy