org.nustaq.serialization.util.FSTInt2ObjectMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fst Show documentation
Show all versions of fst Show documentation
A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.
package org.nustaq.serialization.util;
public interface FSTInt2ObjectMap {
int size();
void put(int key, V value);
V get(int key);
void clear();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy