package com.walker.cache;
|
|
import com.walker.infrastructure.core.ApplicationBeanDestroied;
|
import com.walker.infrastructure.core.ApplicationBeanInitialized;
|
|
import java.util.List;
|
|
public interface CacheManager extends ApplicationBeanInitialized, ApplicationBeanDestroied {
|
|
Cache getCache(String cacheName);
|
|
List<Cache> getCacheList();
|
|
CacheConfig getCacheConfig();
|
}
|