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

org.boon.slumberdb.leveldb.SimpleKryoKeyValueStoreLevelDB Maven / Gradle / Ivy

There is a newer version: 0.34
Show newest version
package org.boon.slumberdb.leveldb;

import org.boon.slumberdb.impl.SimpleKryoKeyValueStore;
import org.iq80.leveldb.Options;

import java.io.Serializable;

/**
 * Created by Richard on 4/5/14.
 */
public class SimpleKryoKeyValueStoreLevelDB extends SimpleKryoKeyValueStore {


    public SimpleKryoKeyValueStoreLevelDB(String fileName, Options options, boolean log, Class type) {
        super(new LevelDBKeyValueStore(fileName, options, log), type);
    }


    public SimpleKryoKeyValueStoreLevelDB(String fileName, Class type) {
        super(new LevelDBKeyValueStore(fileName), type);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy