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: 3.1.1
Show newest version
package com.maxmind.db;

import java.io.IOException;

import com.fasterxml.jackson.databind.JsonNode;

public interface NodeCache {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy