public interface CacheEntryModifiedEvent<K,V> extends CacheEntryEvent<K,V>
CacheEntryModified
The getValue()
method's behavior is specific to whether the callback is triggered before or after the event
in question. For example, if event.isPre() is true, then event.getValue() would return the
old value, prior to modification. If event.isPre() is false, then event.getValue()
would return new new value. If the event is creating and inserting a new entry, the old value would be null.
Event.Type
Modifier and Type | Method and Description |
---|---|
V |
getValue()
Retrieves the value of the entry being modified.
|
boolean |
isCommandRetried()
This will be true if the write command that caused this had to be retried again due to a topology change.
|
boolean |
isCreated()
Indicates whether the cache entry modification event is the result of
the cache entry being created.
|
getKey, getMetadata, isCurrentState
getGlobalTransaction, isOriginLocal
V getValue()
getValue
in interface CacheEntryEvent<K,V>
boolean isCreated()
boolean isCommandRetried()
Copyright © 2021 JBoss by Red Hat. All rights reserved.