Class KeyAddedCacheEvent<TType>

IMPORT_PATH: "@daiso-tech/core/cache/contracts"

Type Parameters

  • TType = unknown

Hierarchy (view full)

  • BaseEvent<{
        group: string;
        key: string;
        ttl: TimeSpan | null;
        value: TType;
    }>
    • KeyAddedCacheEvent

Constructors

Properties

Constructors

Properties

fields: {
    group: string;
    key: string;
    ttl: null | TimeSpan;
    value: TType;
}