com.jarslab.ts.InBit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gorilla4j Show documentation
Show all versions of gorilla4j Show documentation
Implementation of time series compression method based on the Facebook Gorilla paper
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