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

cn.patterncat.cache.component.key.CacheKeysExtractor Maven / Gradle / Ivy

package cn.patterncat.cache.component.key;

import org.springframework.cache.Cache;

import java.util.Collection;

/**
 * https://github.com/ipalbeniz/spring-boot-caches-endpoint/blob/master/src/main/java/com/demo/autoconfiguration/cachekeys/CacheKeysExtractor.java
 */
public interface CacheKeysExtractor {
    Collection extractKeys(Cache cache);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy