mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
302 B
Java
13 lines
302 B
Java
package io.ebean.cache;
|
|
|
|
/**
|
|
* Used to validate that a query cache entry is still valid based on dependent tables.
|
|
*/
|
|
public interface QueryCacheEntryValidate {
|
|
|
|
/**
|
|
* Return true if the entry is still valid based on dependent tables.
|
|
*/
|
|
boolean isValid(QueryCacheEntry queryCacheEntry);
|
|
}
|