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);
}