vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface CancellationToken

    interface CancellationToken {
        isCancellationRequested: boolean;
        onCancellationRequested(
            listener: (e: any) => any,
            thisArgs?: any,
            ..._: any[],
        ): { dispose(): any };
    }
    Index

    Properties

    isCancellationRequested: boolean

    Is true when the token has been cancelled, false otherwise.

    Methods

    • An Event which fires upon cancellation.

      Parameters

      • listener: (e: any) => any
      • OptionalthisArgs: any
      • ..._: any[]

      Returns { dispose(): any }