CancellationToken

A cancellation token is passed to an asynchronous or long running operation to request cancellation, like cancelling a request for completion items because the user continued to type.

To get an instance of a CancellationToken use a CancellationTokenSource.

Online Documentation

Properties

Link copied to clipboard

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

Link copied to clipboard
abstract val onCancellationRequested: Event<ERROR CLASS: Symbol not found for JsAny??>

An Event which fires upon cancellation.

Functions