CacheEntryUpdatedEvent<T> constructor
CacheEntryUpdatedEvent<T> (
- Cache<
T> source, - CacheInfo oldEntry,
- CacheEntry newEntry
Builds a CacheEntryUpdatedEvent
source: The cache that originated the eventoldEntry: The old entry infonewEntry: The new entry
Implementation
CacheEntryUpdatedEvent(Cache<T> source, this.oldEntry, this.newEntry)
: super(source, CacheEventType.updated);