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

com.maxmind.db.NodeCache Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.maxmind.db;

import java.io.IOException;

public interface NodeCache {

    public interface Loader {
        Object load(int key) throws IOException;
    }

    public Object get(int key, Loader loader) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy