ixfx
    Preparing search index...

    Type Alias ExpiringMapEvents<K, V>

    type ExpiringMapEvents<K, V> = {
        expired: ExpiringMapEvent<K, V>;
        newKey: ExpiringMapEvent<K, V>;
        removed: ExpiringMapEvent<K, V>;
    }

    Type Parameters

    • K
    • V
    Index

    Properties

    expired: ExpiringMapEvent<K, V>

    Fires when an item is removed due to eviction or automatic expiry

    newKey: ExpiringMapEvent<K, V>

    Fires when a item with a new key is added

    removed: ExpiringMapEvent<K, V>

    Fires when an item is manually removed, removed due to eviction or automatic expiry