public interface CacheInterceptor<K,V> extends Serializable
get(...)
, put(...)
, and remove(...)
operations. The onBefore
callbacks can also be used to change the values
stored in cache or preventing entries from being removed from cache.
Cache interceptor is configured via CacheConfiguration.getInterceptor()
configuration property.
Any grid resource from org.apache.ignite.resources
package can be injected
into implementation of this interface.
Modifier and Type | Method and Description |
---|---|
void |
onAfterPut(javax.cache.Cache.Entry<K,V> entry)
This method is called after new value has been stored.
|
void |
onAfterRemove(javax.cache.Cache.Entry<K,V> entry)
This method is called after value has been removed.
|
V |
onBeforePut(javax.cache.Cache.Entry<K,V> entry,
V newVal)
This method is called within
IgniteCache.put(Object, Object)
and similar operations before new value is stored in cache. |
@Nullable IgniteBiTuple<Boolean,V> |
onBeforeRemove(javax.cache.Cache.Entry<K,V> entry)
This method is called within
IgniteCache.remove(Object)
and similar operations to provide control over returned value. |
V |
onGet(K key,
V val)
This method is called within
IgniteCache.get(Object)
and similar operations to provide control over returned value. |
@Nullable V onGet(K key, @Nullable V val)
IgniteCache.get(Object)
and similar operations to provide control over returned value.
If this method returns null
, then get()
operation
results in null
as well.
This method should not throw any exception.
key
- Key.val
- Value mapped to key
at the moment of get()
operation.get()
operation.Cache.get(Object)
@Nullable V onBeforePut(javax.cache.Cache.Entry<K,V> entry, V newVal)
IgniteCache.put(Object, Object)
and similar operations before new value is stored in cache.
Implementations should not execute any complex logic, including locking, networking or cache operations, as it may lead to deadlock, since this method is called from sensitive synchronization blocks.
This method should not throw any exception.
IMPORTANT: for this method to take affect, newVal
and
the returned value have to be different instances. I.e., you should
not mutate newVal
directly, but instead create a copy, update
it and then return from the interceptor.
entry
- Old entry. If CacheConfiguration.isCopyOnRead()
is true
, then is copy.newVal
- New value.null
cancels the update.IgniteCache.put(Object, Object)
void onAfterPut(javax.cache.Cache.Entry<K,V> entry)
Implementations should not execute any complex logic, including locking, networking or cache operations, as it may lead to deadlock, since this method is called from sensitive synchronization blocks.
This method should not throw any exception.
entry
- Current entry. If CacheConfiguration.isCopyOnRead()
is true
then
entry is a copy.@Nullable @Nullable IgniteBiTuple<Boolean,V> onBeforeRemove(javax.cache.Cache.Entry<K,V> entry)
IgniteCache.remove(Object)
and similar operations to provide control over returned value.
Implementations should not execute any complex logic, including locking, networking or cache operations, as it may lead to deadlock, since this method is called from sensitive synchronization blocks.
This method should not throw any exception.
entry
- Old entry. If CacheConfiguration.isCopyOnRead()
is true
then
entry is a copy.remove()
operation,
may be null
.IgniteCache.remove(Object)
void onAfterRemove(javax.cache.Cache.Entry<K,V> entry)
Implementations should not execute any complex logic, including locking, networking or cache operations, as it may lead to deadlock, since this method is called from sensitive synchronization blocks.
This method should not throw any exception.
entry
- Removed entry. If CacheConfiguration.isCopyOnRead()
is true
then
entry is a copy.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019