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

com.oath.micro.server.elasticache.DistributedCacheManager Maven / Gradle / Ivy

package com.oath.micro.server.elasticache;
import java.util.Optional;

public interface DistributedCacheManager {
        void setConnectionTested(boolean result);
        boolean isAvailable();
        boolean add(String key, int exp, V value);
        Optional get(String key);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy