CacheEntryCreatedEvent<T> constructor

CacheEntryCreatedEvent<T>(
  1. Cache<T> source,
  2. CacheEntry entry
)

Builds a CacheEntryCreatedEvent

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

Implementation

CacheEntryCreatedEvent(Cache<T> source, this.entry)
    : super(source, CacheEventType.created);