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

org.cache2k.processor.MutableCacheEntry Maven / Gradle / Ivy

Go to download

A light weight and high performance Java caching library. Android and Java 6 compatible. This artifact contains the official API of cache2k.

There is a newer version: 2.6.1.Final
Show newest version
package org.cache2k.processor;

/*
 * #%L
 * cache2k API
 * %%
 * Copyright (C) 2000 - 2021 headissue GmbH, Munich
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.cache2k.CacheEntry;
import org.cache2k.annotation.Nullable;
import org.cache2k.io.CacheLoader;
import org.cache2k.io.CacheLoaderException;
import org.cache2k.io.LoadExceptionInfo;
import org.cache2k.io.AdvancedCacheLoader;
import org.cache2k.io.CacheWriter;
import org.cache2k.io.ResiliencePolicy;

/**
 * A mutable entry is used inside the {@link EntryProcessor} to perform
 * updates and retrieve information from a cache entry.
 *
 * 

A mutation is only done if a method for mutation is called, e.g. * {@code setValue} or {@code remove}. If multiple mutate methods * are called in sequence only the last method will have an effect. * *

One instance is only usable by a single thread and for * one call of {@link EntryProcessor#process(MutableCacheEntry)}. * *

Planed extensions: getExpiryTime, peekValue/peekException.... * * @see EntryProcessor * @author Jens Wilke */ public interface MutableCacheEntry extends CacheEntry { /** *

Returns the value to which the cache associated the key, * or {@code null} if the cache contains no mapping for this key. * If no mapping exists and a loader is specified, the cache loader * is called. * *

In contrast to the main cache interface there is no peekValue method, * since the same effect can be achieved by the combination of {@link #exists()} * and {@link #getValue()}. * * @throws CacheLoaderException if loading produced an exception * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. * @return The cached value, the loaded value or {@code null} otherwise * @see CacheLoader */ @Override @SuppressWarnings({"NullAway", "nullness"}) @Nullable V getValue(); /** * {@inheritDoc} * *

If a loader is present and the entry is not yet loaded or expired, a * load is triggered. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ @Override @Nullable Throwable getException(); /** * {@inheritDoc} * *

If a loader is present and the entry is not yet loaded or expired, a * load is triggered. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ @Override @Nullable LoadExceptionInfo getExceptionInfo(); /** * {@code True} if a mapping exists in the cache, never invokes the loader. * *

After this method returns {@code true}, a call to {@code getValue} will always * return the cached value and never invoke the loader. The potential expiry * of the value is only checked once and the return values of this method and * {@code getValue} will be consistent. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ boolean exists(); /** * Current time as provided by the internal time source * (usually {@code System.currentTimeMillis()}. * The time is retrieved once when the entry processor is invoked and will not change afterwards. * If a load is triggered this value will be identical to the {@code startTime} in * {@link AdvancedCacheLoader#load}, * {@link LoadExceptionInfo#getLoadTime()} or { * @link AsyncCacheLoader.Context#getLoadStartTime()} */ long getStartTime(); /** * Locks the entry for mutation. Code following this method will be * executed once and atomically w.r.t. other operations changing an entry * with the same key. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. * @throws UnsupportedOperationException In case locking is not supported by this * cache configuration. * */ MutableCacheEntry lock(); /** * Insert or updates the cache value assigned to this key. * *

After calling this method the values of {@code exists} and {@code getValue} * will not change. This behavior is different from JSR107/JCache. This definition * reduces complexity and is more useful than the JSR107 behavior. * *

If a writer is registered, the * {@link CacheWriter#write(Object, Object)} is called. */ MutableCacheEntry setValue(V v); /** * Calls the loader unconditionally in this operation. Multiple calls have no effect. * After the load, the loaded value can be retrieved with {@link #getValue()}. * * @throws IllegalStateException if {@link #getValue()} was called before * @throws UnsupportedOperationException if no loader is defined * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ MutableCacheEntry load(); /** * Removes an entry from the cache. * *

In case a writer is registered, {@link CacheWriter#delete} * is called. If a remove is performed on a not existing cache entry the writer * method will also be called. * *

After calling this method the values of {@code exists} and {@code getValue} * will not change. This behavior is different from JSR107/JCache. This definition * reduces complexity and is more useful than the JSR107 behavior. * * @see JSR107 TCK issue 84 */ MutableCacheEntry remove(); /** * Insert or update the entry and sets an exception. The exception will be * propagated as {@link CacheLoaderException}. * *

The effect depends on expiry and resilience setting. An exception * will be kept in the cache only if there is an expiry configured or * the resilience policy is allowing that. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. * @see ResiliencePolicy */ MutableCacheEntry setException(Throwable ex); /** * Set a new expiry time for the entry. If combined with {@link #setValue} the entry * will be updated or inserted with this expiry time, otherwise just the expiry time * will be updated. * *

Special time values are defined and described at {@link org.cache2k.expiry.ExpiryTimeValues} * * @param t Time in millis since epoch. * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ MutableCacheEntry setExpiryTime(long t); /** * Returns the effective expiry time of the current cache entry in case {@link #exists()} * is false it returns{@link org.cache2k.expiry.ExpiryTimeValues#NOW}. If the entry * was loaded, it returns the calculated expiry time from {@link org.cache2k.expiry.ExpiryPolicy} * or {@link ResiliencePolicy}. A negative value means sharp expiry as described in the expiry * policy. * @see org.cache2k.expiry.ExpiryPolicy */ long getExpiryTime(); /** * Timestamp of the last update of the cached value. This is the start time * (before the loader was called) of a successful load operation, or the time * the value was modified directly via {@link org.cache2k.Cache#put} or other sorts * of mutation. Does not trigger a load. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ long getModificationTime(); /** * If {@link #setValue(Object)} is used, this sets an alternative time for * expiry calculations. The entry refreshed time is not updated, if the entry is * not mutated. * *

If refresh ahead is enabled via {@link org.cache2k.Cache2kBuilder#refreshAhead(boolean)}, * the next refresh time is controlled by the expiry time. * * @throws RestartException If the information is not yet available and the cache * needs to do an operation to supply it. After completion, * the entry processor will be executed again. */ MutableCacheEntry setModificationTime(long t); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy