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

com.github.bootfastconfig.cache.caffeine.CaffeineCacheConfigGather 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.caffeine;


import com.github.benmanes.caffeine.cache.Caffeine;

public interface CaffeineCacheConfigGather {

    /**
     * Add caffeine cache config.
     *
     * @param caffeineCacheConfig the caffeine cache config
     */
    default void addCaffeineCacheConfig(CaffeineCacheConfig caffeineCacheConfig) {
    }


    /**
     * Get caffeine builder caffeine builder.
     *
     * @return the caffeine builder
     */
    default Caffeine getDefaultCaffeineConfig() {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy