org.nustaq.serialization.util.DefaultFSTInt2ObjectMapFactory 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 class DefaultFSTInt2ObjectMapFactory implements FSTInt2ObjectMapFactory{
@Override
public FSTInt2ObjectMap createMap(int size) {
return new DefaultFSTInt2ObjectMap<>(size);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy