CacheEntryExpiredEvent<T> constructor

CacheEntryExpiredEvent<T>(
  1. Cache<T> source,
  2. CacheInfo entry
)

Builds a CacheEntryExpiredEvent

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

Implementation

CacheEntryExpiredEvent(Cache<T> source, CacheInfo entry)
    : super(source, entry, type: CacheEventType.expired);