Member Junction
    Preparing search index...

    Type Alias EntityEventDisposition

    EntityEventDisposition:
        | { action: "refresh" }
        | { action: "notify"; changeType: "add" | "update" | "delete" }
        | { action: "silent" }

    How a single entity event relates to a single config's backing array — the result of BaseEngine.classifyEventForConfig:

    • 'refresh': the array does not yet reflect the event; a refresh/immediate mutation is required
    • 'notify': the array already reflects the event; observers still need a notification
    • 'silent': a delete of a row absent from the array; no refresh and no notification