org.mapdb.StoreBinaryGetLong Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapdb Show documentation
Show all versions of mapdb Show documentation
MapDB provides concurrent Maps, Sets and Queues backed by disk storage or off-heap memory. It is a fast, scalable and easy to use embedded Java database.
package org.mapdb;
import java.io.IOException;
/**
* Binary operations performed on {@link StoreBinary} which retuns long
*/
public interface StoreBinaryGetLong {
long get(DataInput2 input, int size) throws IOException;
}