All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.thymeleaf.cache.ICacheEntryValidityChecker Maven / Gradle / Ivy

Go to download

Modern server-side Java template engine for both web and standalone environments

There is a newer version: 3.1.3.RELEASE
Show newest version
package org.thymeleaf.cache;

import java.io.Serializable;

/**
 * 

* Defines the logic needed to (optionally) validate an entry living in an * {@link ICache} object before returning it as the result of a get * operation. If not valid, the entry will be removed * from the cache (and null will be returned). *

* * @author Daniel Fernández * * @since 2.0.0 * * @param The type of the cache map keys * @param The type of the cache map values */ public interface ICacheEntryValidityChecker extends Serializable { public boolean checkIsValueStillValid(final K key, final V value, final long entryCreationTimestamp); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy