IAsyncTask Class
Contents
[
Hide
]Summary: The asynchronous task.
Module: aspose.psd.asynctask
Full Name: aspose.psd.asynctask.IAsyncTask
Aspose.PSD Version: 24.9.0
Properties
Name | Type | Access | Description |
---|---|---|---|
is_busy | bool | r | Gets a value indicating whether this task is currently running. |
is_canceled | bool | r | Gets a value indicating whether this task was canceled. |
is_faulted | bool | r | Gets a value indicating whether this task was faulted. |
progress | AsyncTaskProgress | r | Gets the progress of the asynchronous task. |
result | object | r | Gets the result of this task. |
Methods
Name | Description |
---|---|
abort() | Aborts this task. The task is completed immediately, with the risk of not freeing internal unmanaged resources. |
cancel() | Cancels this task. The task is completed safely by the controlled stopping of the algorithm. |
run_async() | Runs this task. |