mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
14 lines
160 B
Java
14 lines
160 B
Java
package io.ebeaninternal.server.cache;
|
|
|
|
/**
|
|
* A change to the cache.
|
|
*/
|
|
public interface CacheChange {
|
|
|
|
/**
|
|
* Apply the change.
|
|
*/
|
|
void apply();
|
|
|
|
}
|