transferum
    Preparing search index...

    Interface SubscriberInterface

    Subscription handle — tracks active state and supports unsubscribe lifecycle hooks.

    interface SubscriberInterface {
        active: boolean;
        offUnsubscribe(
            handler: DataHandler<SubscriberInterface>,
        ): SubscriberInterface;
        onUnsubscribe(
            handler: DataHandler<SubscriberInterface>,
        ): SubscriberInterface;
        unsubscribe(): void;
    }

    Implemented by

    Index
    active: boolean