package org.infinispan.configuration.cache; import java.util.concurrent.TimeUnit; import org.infinispan.commons.configuration.attributes.Attribute; import org.infinispan.commons.configuration.attributes.AttributeDefinition; import org.infinispan.commons.configuration.attributes.AttributeSet; /** * Controls the default expiration settings for entries in the cache. */ public class ExpirationConfiguration { public static final AttributeDefinition<Long> LIFESPAN = AttributeDefinition.builder("lifespan", -1l).build(); public static final AttributeDefinition<Long> MAX_IDLE = AttributeDefinition.builder("maxIdle", -1l).build(); public static final AttributeDefinition<Boolean> REAPER_ENABLED = AttributeDefinition.builder("reaperEnabled", true).immutable().autoPersist(false).build(); public static final AttributeDefinition<Long> WAKEUP_INTERVAL = AttributeDefinition.builder("wakeUpInterval", TimeUnit.MINUTES.toMillis(1)).xmlName("interval").build(); static AttributeSet attributeDefinitionSet() { return new AttributeSet(ExpirationConfiguration.class, LIFESPAN, MAX_IDLE, REAPER_ENABLED, WAKEUP_INTERVAL); } private final Attribute<Long> lifespan; private final Attribute<Long> maxIdle; private final Attribute<Boolean> reaperEnabled; private final Attribute<Long> wakeUpInterval; private final AttributeSet attributes; ExpirationConfiguration(AttributeSet attributes) { this.attributes = attributes.checkProtection(); lifespan = attributes.attribute(LIFESPAN); maxIdle = attributes.attribute(MAX_IDLE); reaperEnabled = attributes.attribute(REAPER_ENABLED); wakeUpInterval = attributes.attribute(WAKEUP_INTERVAL); } /** * Maximum lifespan of a cache entry, after which the entry is expired cluster-wide, in * milliseconds. -1 means the entries never expire. * * Note that this can be overridden on a per-entry basis by using the Cache API. */ public long lifespan() { return lifespan.get(); } /** * Maximum idle time a cache entry will be maintained in the cache, in milliseconds. If the idle * time is exceeded, the entry will be expired cluster-wide. -1 means the entries never expire. * * Note that this can be overridden on a per-entry basis by using the Cache API. */ public long maxIdle() { return maxIdle.get(); } /** * Determines whether the background reaper thread is enabled to test entries for expiration. * Regardless of whether a reaper is used, entries are tested for expiration lazily when they are * touched. */ public boolean reaperEnabled() { return reaperEnabled.get(); } /** * Interval (in milliseconds) between subsequent runs to purge expired entries from memory and * any cache stores. If you wish to disable the periodic eviction process altogether, set * wakeupInterval to -1. */ public long wakeUpInterval() { return wakeUpInterval.get(); } @Override public String toString() { return "ExpirationConfiguration [attributes=" + attributes + "]"; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ExpirationConfiguration other = (ExpirationConfiguration) obj; if (attributes == null) { if (other.attributes != null) return false; } else if (!attributes.equals(other.attributes)) return false; return true; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((attributes == null) ? 0 : attributes.hashCode()); return result; } public AttributeSet attributes() { return attributes; } }