LuciadCPillar C# 2024.0.08
|
This class contains information on whether an operation has been canceled. More...
Public Member Functions | |
void | Dispose () |
void | RunTask (Luciad.Concurrent.ICancellableTask task) |
Runs a cancellable task that will be notified when the CancellationToken is canceled. More... | |
Properties | |
bool | IsCanceled [get] |
Whether the cancellation token has the status canceled. More... | |
This class contains information on whether an operation has been canceled.
It is typically passed as a parameter to methods that perform an operation that could potentially take a long time. The method can either manually check whether the ongoing operation is canceled
and react accordingly, or it can run a ICancellableTask
on that token by calling CancellationToken.RunTask
, in which case the task will be notified as soon as the CancellationToken
gets canceled.
For example: when raster data is added to the Map
, the map's rendering backend will request raster tile data. When at the same time, this raster data is removed from the map, the rendering backend will want to stop requesting data as quickly as possible. For that purpose:
CancellationToken
instances with each raster data request CancellationToken.isCanceled
method periodically and take appropriate action to stop executing once it noticed the token is canceled, or b. wrapping the Http request in an ICancellableTask
and calling CancellationToken.RunTask
, so that the request can be aborted (by calling the appropriate method on the request class) as soon as the token gets canceled. It is not mandatory to use the CancellationToken
, but it is recommended. Not doing so may block operations for a longer time, such a removing a layer or closing the map.
|
inline |
|
inline |
Runs a cancellable task that will be notified when the CancellationToken
is canceled.
This method synchronously calls ICancellableTask.run()
on the provided task. If the token is canceled by another thread while runTask is executing, ICancellableTask.cancel()
will be called on that other thread.
task | the cancellable task to be executed |
|
get |
Whether the cancellation token has the status canceled.
Returns whether the cancellation token has the status canceled. This method is typically used by time-consuming operations. These operations are supposed to regularly check the status of this method. When it returns 'true', the operation can decide to stop executing.