no.tornado.inject.CacheInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inject Show documentation
Show all versions of inject Show documentation
Dependency Injection and Module framework
package no.tornado.inject;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.util.Map;
public interface CacheInterceptor {
void beforeInvalidate(BeanInfo beanInfo, Method method, Object[] args, Map indexEntries);
void beforeStore(BeanInfo beanInfo, Method method, Object[] args, Map indexEntries, String cacheKey);
}