CacheEntryEvictedEvent<T> constructor

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

Builds a CacheEntryEvictedEvent

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

Implementation

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