UpdatedEntryEvent constructor

UpdatedEntryEvent(
  1. Cache source,
  2. CacheEntry oldEntry,
  3. CacheEntry newEntry
)

Builds a UpdatedEntryEvent

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

Implementation

UpdatedEntryEvent(Cache source, this.oldEntry, this.newEntry)
    : super(source, EntryEventType.updated);