Package javax.cache.event

This package contains listeners and scoping interfaces.

See:
          Description

Interface Summary
CacheEntryCreatedListener<K,V> Invoked if a cache entry is created, for example through a Cache.put(Object, Object) operation.
CacheEntryExpiredListener<K,V> Invoked if a cache entry is removed, for example through a Cache.remove(Object) call.
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) operation.
 

Enum Summary
NotificationScope This enumeration defines valid values for CacheEntryListener notification scope.
 

Package javax.cache.event Description

This package contains listeners and scoping interfaces.

Since:
1.0
Author:
Greg Luck, Yannis Cosmadopoulos


Copyright © 2011. All Rights Reserved.