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(super.source, super.entry)
    : super(type: CacheEventType.evicted);