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

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

package com.maxmind.db;

import java.io.IOException;

public interface NodeCache {

    interface Loader {
        DecodedValue load(CacheKey key) throws IOException;
    }

    DecodedValue get(CacheKey key, Loader loader) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy