Enum AsyncOperationStatus
Enumerates possible status values for IAsyncOperation.
Namespace: UnityFx.Async
Assembly: UnityFx.Async-netstandard2.0.dll
Syntax
public enum AsyncOperationStatus
Fields
| Name | Description |
|---|---|
| Canceled | The operation has been canceled. |
| Created | The operation is initialized but has not yet been scheduled for execution. |
| Faulted | The operation completed due to an unhandled exception. |
| RanToCompletion | The operation completed execution successfully. |
| Running | The operation is running but has not yet completed. |
| Scheduled | The operation has been scheduled for execution but has not yet begun executing. |