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

com.github.bootfastconfig.cache.CacheConfig Maven / Gradle / Ivy

Go to download

Parent pom providing dependency and plugin management for applications built with Maven

The newest version!
package com.github.bootfastconfig.cache;

import java.util.Collection;
import java.util.function.Consumer;

public interface CacheConfig {


    public void importCacheBuilder(CacheConfig cacheConfig);


    public Collection getCacheBuilder();


    public void addCache(T cache);

    public void addCaches(Collection caches);


    public void exportConsumer(Consumer cacheManager);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy