FuncType - v0.8.85
    Preparing search index...

    Type Alias CancellationTokenSource

    Create a cancellation token and controller The controller can be used to cancel operations that use the token

    type CancellationTokenSource = {
        token: CancellationToken;
        cancel(): void;
    }
    Index

    Properties

    Methods

    Properties

    The token to be passed to cancellable operations

    Methods

    • Cancel all operations using this token

      Returns void