org.ehcache.spi.loaderwriter.CacheLoaderWriter Maven / Gradle / Ivy
Show all versions of ehcache-api Show documentation
/*
* Copyright Terracotta, Inc.
*
* 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.
*/
package org.ehcache.spi.loaderwriter;
import java.util.HashMap;
import java.util.Map;
/**
* A CacheLoaderWriter is used to keep a {@link org.ehcache.Cache Cache} in sync with another system.
*
* Instances of this class should be thread safe.
*
* Any {@link Exception} thrown by the loading methods of this interface will be wrapped into a
* {@link CacheLoadingException} by the {@link org.ehcache.Cache Cache} and will need to be handled by
* the user. Any {@code java.lang.Exception} thrown by the writing methods will
* be wrapped into a {@link CacheWritingException}.
*
* A similar thing will happen for the bulk version of the loading and writing methods and create the bulk version of
* the related exceptions.
*
* @param the key type processed by this loader-writer
* @param the value type processed by this loader-writer
*
* @see CacheLoadingException
* @see CacheWritingException
* @see BulkCacheLoadingException
* @see BulkCacheWritingException
*/
public interface CacheLoaderWriter {
/**
* Loads a single value.
*
* When used with a cache any exception thrown by this method will be thrown
* back to the user as a {@link CacheLoadingException}.
*
* @param key the key for which to load the value
*
* @return the loaded value
*
* @throws Exception if the value cannot be loaded
*/
V load(K key) throws Exception;
/**
* Loads multiple values.
*
* The returned {@link Map} should contain {@code null} values for the keys
* that could not be found.
*
* When used with a cache the mappings that will be installed are the keys as found in {@code keys}
* mapped to the results of {@code loadAllResult.get(key)}. Any other mappings will be ignored.
*
* By using a {@link BulkCacheLoadingException} implementors can report partial success. Any other exceptions will
* be thrown back to the {@code Cache} user through a {@link BulkCacheLoadingException} indicating a complete failure.
*
* @param keys the keys to load
*
* //Which null or not present?
* @return the {@link java.util.Map Map} of values for each key passed in, where no mapping means no value to map.
*
* @throws BulkCacheLoadingException in case of partial success
* @throws Exception in case no values could be loaded
*/
default Map loadAll(Iterable extends K> keys) throws BulkCacheLoadingException, Exception {
Map entries = new HashMap<>();
for (K k : keys) {
entries.put(k, load(k)) ;
}
return entries;
}
/**
* Writes a single mapping.
*
* The write may represent a brand new value or an update to an existing value.
*
* When used with a {@code Cache} any exception thrown by this method will
* be thrown back to the user through a {@link CacheWritingException}.
*
* @param key the key to write
* @param value the value to write
*
* @throws Exception if the write operation failed
*/
void write(K key, V value) throws Exception;
/**
* Writes multiple mappings.
*
* The writes may represent a mix of brand new values and updates to existing values.
*
* By using a {@link BulkCacheWritingException} implementors can report partial success. Any other exception will
* be thrown back to the {@code Cache} user through a {@link BulkCacheWritingException} indicating a complete failure.
*
* @param entries the mappings to write
*
* @throws BulkCacheWritingException in case of partial success
* @throws Exception in case no values could be written
*/
default void writeAll(Iterable extends Map.Entry extends K, ? extends V>> entries) throws BulkCacheWritingException, Exception {
for (Map.Entry extends K, ? extends V> entry : entries) {
write(entry.getKey(), entry.getValue());
}
}
/**
* Deletes a single mapping.
*
* @param key the key to delete
*
* @throws Exception if the write operation failed
*/
void delete(K key) throws Exception;
/**
* Deletes multiple mappings.
*
* By using a {@link BulkCacheWritingException} implementors can report partial success. Any other exception will
* be thrown back to the {@code Cache} user through a {@link BulkCacheWritingException} indicating all deletes failed.
*
* @param keys the keys to delete
*
* @throws BulkCacheWritingException in case of partial success
* @throws Exception in case no values can be loaded
*/
default void deleteAll(Iterable extends K> keys) throws BulkCacheWritingException, Exception {
for (K k : keys) {
delete(k);
}
}
}