org.cache2k.io.AdvancedCacheLoader Maven / Gradle / Ivy
Show all versions of cache2k-api Show documentation
package org.cache2k.io;
/*
* #%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.Cache2kBuilder;
import org.cache2k.CacheEntry;
import org.cache2k.DataAwareCustomization;
import org.cache2k.annotation.Nullable;
/**
* Retrieves or generates a value to load into the cache. The advanced loader interface
* contains the current time and the previous cache entry. The previous cache entry
* can be used for a more intelligent loading strategy, e.g. for HTTP based loading with
* the {@code If-Modified-Since} header.
*
* For general documentation on the loader, please see {@link CacheLoader}.
*
* @author Jens Wilke
* @see CacheLoader
* @since 2
*/
public interface AdvancedCacheLoader extends DataAwareCustomization {
/**
* Retrieves or generates data based on the key parameter.
*
* @param key The non-null key to provide the value for.
* @param startTime Time in millis, retrieved before the call.
* @param currentEntry Current entry in the cache. The entry is available if the load is caused
* by a reload or refresh. If expired before, {@code null} is returned.
* If {@link Cache2kBuilder#keepDataAfterExpired(boolean)} is enabled, also
* an expired entry is provided to the loader for optimization purposes.
* See also the description of
* {@link Cache2kBuilder#keepDataAfterExpired(boolean)} and
* {@link Cache2kBuilder#refreshAhead(boolean)}.
* @return value to be associated with the key. If the cache permits {@code null} values
* a {@code null} is associated with the key.
* @throws Exception Unhandled exception from the loader. Exceptions are suppressed or
* wrapped and rethrown via a {@link CacheLoaderException}
*/
V load(K key, long startTime, @Nullable CacheEntry currentEntry) throws Exception;
}