ExpiredEntryEvent constructor

ExpiredEntryEvent(
  1. Cache source,
  2. CacheEntry entry
)

Builds a ExpiredEntryEvent

  • source: The cache that originated the event
  • entry: The removed entry

Implementation

ExpiredEntryEvent(Cache source, CacheEntry entry)
    : super(source, entry, type: EntryEventType.expired);