Member Junction
    Preparing search index...

    Interface CacheInvalidationPayload

    Payload interface for publishing cache invalidation events. Used by PubSubManager.Publish() to send events from Redis callbacks.

    interface CacheInvalidationPayload {
        action: string;
        entityName: string;
        originSessionId?: string;
        primaryKeyValues: string;
        recordData?: string;
        sourceServerId: string;
        timestamp: Date;
    }
    Index

    Properties

    action: string
    entityName: string
    originSessionId?: string
    primaryKeyValues: string
    recordData?: string
    sourceServerId: string
    timestamp: Date