x4js - v2.2.49
    Preparing search index...
    interface CancellationToken {
        isCancellationRequested: boolean;
        onCancellationRequested: (
            listener: (e: any) => any,
            thisArgs?: any,
            disposables?: IDisposable[],
        ) => IDisposable;
    }
    Index
    isCancellationRequested: boolean

    A flag signalling is cancellation has been requested.

    onCancellationRequested: (
        listener: (e: any) => any,
        thisArgs?: any,
        disposables?: IDisposable[],
    ) => IDisposable

    An event which fires when cancellation is requested. This event only ever fires once as cancellation can only happen once. Listeners that are registered after cancellation will be called (next event loop run), but also only once.