CacheEntryUpdatedEvent<T> constructor

CacheEntryUpdatedEvent<T>(
  1. Cache<T> source,
  2. CacheInfo oldEntry,
  3. CacheEntry newEntry
)

Builds a CacheEntryUpdatedEvent

  • source: The cache that originated the event
  • oldEntry: The old entry info
  • newEntry: The new entry

Implementation

CacheEntryUpdatedEvent(Cache<T> source, this.oldEntry, this.newEntry)
    : super(source, CacheEventType.updated);