EvictedEntryEvent constructor

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

Builds a EvictedEntryEvent

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

Implementation

EvictedEntryEvent(Cache source, CacheEntry entry)
    : super(source, entry, type: EntryEventType.evicted);