VaultEntryCreatedEvent<T> constructor

VaultEntryCreatedEvent<T>(
  1. Vault<T> source,
  2. VaultEntry entry
)

Builds a VaultEntryCreatedEvent

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

Implementation

VaultEntryCreatedEvent(Vault<T> source, this.entry)
    : super(source, VaultEventType.created);