
com.alicp.jetcache.ProxyCache Maven / Gradle / Ivy
The newest version!
package com.alicp.jetcache;
/**
* Created on 2016/12/13.
*
* @author huangli
*/
public interface ProxyCache extends Cache {
Cache getTargetCache();
@Override
default T unwrap(Class clazz) {
return getTargetCache().unwrap(clazz);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy