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

com.aerospike.jdbc.schema.OptionalCache Maven / Gradle / Ivy

The newest version!
package com.aerospike.jdbc.schema;

import java.util.Optional;

public interface OptionalCache {

    Optional get(K key);

    void put(K key, V value);

    void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy