Unsubscribe event — the moment a subscription is torn down.

Symmetric to IRSubscribe; the pair (id, scopeId) uniquely identifies the subscription being retired. The exporter preserves a bounded ring of recent unsubscribes so the SubscribeWithoutDispose pass can pair lifecycle records.

interface IRUnsubscribe {
    graphId: string;
    id: string;
    kind: "unsubscribe";
    scopeId: string;
    time: number;
}

Properties

graphId: string
id: string
kind: "unsubscribe"
scopeId: string
time: number