Interface IdCancellationReceiverStrategy

interface IdCancellationReceiverStrategy {
    kind?: "id";
    createCancellationTokenSource(
        id: CancellationId,
    ): AbstractCancellationTokenSource;
    dispose(): void;
}

Properties

kind?: "id"

Methods

  • An optional method to dispose the strategy.

    Returns void