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

com.jarslab.ts.InBit Maven / Gradle / Ivy

Go to download

Implementation of time series compression method based on the Facebook Gorilla paper

There is a newer version: 0.4
Show newest version
package com.jarslab.ts;

public interface InBit
{
    boolean read();

    default int readInt()
    {
        return readToInt(32);
    }

    default long readLong()
    {
        return read(64);
    }

    default int readToInt(int size)
    {
        return (int) read(size);
    }

    long read(int size);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy