이 콘텐츠는 선택한 언어로 제공되지 않습니다.
7.4. Modifying Cache Entries
After the cache entry has been created, the cache entry can be modified programmatically.
7.4.1. Cache Entry Modified Listener Configuration 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
In a cache entry modified listener event, The
getValue()
method's behavior is specific to whether the callback is triggered before or after the actual operation has been performed. 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 value. If the event is creating and inserting a new entry, the old value would be null. For more information about isPre()
, see the Red Hat JBoss Data Grid API Documentation's listing for the org.infinispan.notifications.cachelistener.event
package.
Listeners can only be configured programmatically by using the methods exposed by the Listenable and FilteringListenable interfaces (which the Cache object implements).
7.4.2. Cache Entry Modified Listener Example 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
The following example defines a listener in Red Hat JBoss Data Grid that prints some information each time a cache entry is modified:
Example 7.2. Modified Listener