| Interface | Description |
|---|---|
| CacheEntryCreatedListener<K,V> |
Invoked if a cache entry is created,
for example through a
Cache.put(Object, Object) operation or the action of a CacheLoader. |
| CacheEntryExpiredListener<K,V> |
Invoked if a cache entry is evicted because of expiration.
|
| CacheEntryListener<K,V> |
Tagging interface for cache entry listeners.
|
| CacheEntryReadListener<K,V> |
Invoked if a cache entry is read,
for example through a
Cache.get(Object) call. |
| CacheEntryRemovedListener<K,V> |
Invoked if a cache entry is removed,
for example through a
Cache.remove(Object) call. |
| CacheEntryUpdatedListener<K,V> |
Invoked if an existing cache entry is updated, for example through a
Cache.put(Object, Object) or a CacheLoader operation . |
| Class | Description |
|---|---|
| CacheEntryEvent<K,V> |
A Cache event base class
|
| Exception | Description |
|---|---|
| CacheEntryListenerException |
An exception to indicate a problem has occurred with a listener.
|
Copyright © 2018 WSO2 Inc. All rights reserved.