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

org.cache2k.CacheEntry 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;

/*
 * #%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.annotation.Nullable;
import org.cache2k.io.CacheLoaderException;
import org.cache2k.io.ExceptionPropagator;
import org.cache2k.io.LoadExceptionInfo;
import org.cache2k.processor.MutableCacheEntry;

/**
 * Object representing a cache entry. With the cache entry, it can be
 * checked whether a mapping in the cache is present, even if the cache
 * contains {@code null} or contains an exception. Entries can be retrieved by
 * {@link Cache#peekEntry(Object)} or {@link Cache#getEntry(Object)} or
 * via iterated via {@link Cache#entries()}.
 *
 * 

After retrieved, the entry instance does not change its values, even * if the value for its key is updated in the cache. * *

Design note: The cache is generally also aware of the time the * object will be refreshed next or when it will expire. This is not exposed * to applications by intention. * * @author Jens Wilke * @see Cache#peekEntry(Object) * @see Cache#getEntry(Object) * @see Cache#entries() */ public interface CacheEntry extends DataAware { /** * Key associated with this entry. */ K getKey(); /** * Value of the entry. The value may be {@code null} if permitted for this cache * via {@link Cache2kBuilder#permitNullValues(boolean)}. If the * entry had a loader exception which is not suppressed, this exception will be * propagated. This can be customized with * {@link Cache2kBuilder#exceptionPropagator(ExceptionPropagator)} * *

For usage within the {@link org.cache2k.processor.EntryProcessor}: * If a loader is present and the entry is not yet loaded or expired, a * load is triggered. See the details at: {@link MutableCacheEntry#getValue()} * * @throws CacheLoaderException if loading produced an exception */ V getValue(); /** * The exception happened when the value was loaded and * the exception could not be suppressed. {@code null} if no exception * happened or it was suppressed. If {@code null} then {@link #getValue} * returns a value and does not throw an exception. */ default @Nullable Throwable getException() { LoadExceptionInfo info = getExceptionInfo(); return info != null ? info.getException() : null; } /** * Detailed information of latest exception from the loader or {@code null} * if no exception happened or it was suppressed. If {@code null} * then {@link #getValue} returns a value and does not throw an exception. */ @Nullable LoadExceptionInfo getExceptionInfo(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy