org.infinispan.cache.impl.CacheSupport Maven / Gradle / Ivy
package org.infinispan.cache.impl;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.infinispan.commons.api.BasicCache;
import org.infinispan.commons.util.concurrent.NotifyingFuture;
/**
* @author [email protected]
* @since 4.1
*/
public abstract class CacheSupport implements BasicCache {
protected long defaultLifespan;
protected long defaultMaxIdleTime;
protected CacheSupport() {
this(0, 0);
}
protected CacheSupport(long defaultLifespan, long defaultMaxIdleTime) {
this.defaultLifespan = defaultLifespan;
this.defaultMaxIdleTime = defaultMaxIdleTime;
}
@Override
public final V put(K key, V value) {
return put(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
/**
* This is intentionally a non-public method meant as an integration point for bytecode manipulation. Don't remove or
* alter the signature even if it might look like unreachable code. Implementors should perform a put operation but
* optimizing it as return values are not required.
*
* @author Sanne Grinovero (C) 2011 Red Hat Inc.
* @since 5.0
*/
protected abstract void set(K key, V value);
@Override
public final void putAll(Map extends K, ? extends V> map) {
putAll(map, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putAsync(K key, V value) {
return putAsync(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final V putIfAbsent(K key, V value) {
return putIfAbsent(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putAsync(K key, V value, long lifespan, TimeUnit unit) {
return putAsync(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putAllAsync(Map extends K, ? extends V> data) {
return putAllAsync(data, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putAllAsync(Map extends K, ? extends V> data, long lifespan, TimeUnit unit) {
return putAllAsync(data, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putIfAbsentAsync(K key, V value) {
return putIfAbsentAsync(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture putIfAbsentAsync(K key, V value, long lifespan, TimeUnit unit) {
return putIfAbsentAsync(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture replaceAsync(K key, V value, long lifespan, TimeUnit unit) {
return replaceAsync(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture replaceAsync(K key, V oldValue, V newValue) {
return replaceAsync(key, oldValue, newValue, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture replaceAsync(K key, V value) {
return replaceAsync(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final NotifyingFuture replaceAsync(K key, V oldValue, V newValue, long lifespan, TimeUnit unit) {
return replaceAsync(key, oldValue, newValue, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final V put(K key, V value, long lifespan, TimeUnit unit) {
return put(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final V putIfAbsent(K key, V value, long lifespan, TimeUnit unit) {
return putIfAbsent(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final void putAll(Map extends K, ? extends V> map, long lifespan, TimeUnit unit) {
putAll(map, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final V replace(K key, V value, long lifespan, TimeUnit unit) {
return replace(key, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final boolean replace(K key, V oldValue, V newValue) {
return replace(key, oldValue, newValue, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final V replace(K key, V value) {
return replace(key, value, defaultLifespan, MILLISECONDS, defaultMaxIdleTime, MILLISECONDS);
}
@Override
public final boolean replace(K key, V oldValue, V value, long lifespan, TimeUnit unit) {
return replace(key, oldValue, value, lifespan, unit, defaultMaxIdleTime, MILLISECONDS);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy