FiberStatusUnion
PackageAxial
Describes the current lifecycle state of a fiber.
Specification
Kind
Union
Members
8
Examples
0
IsRunningSignature
this.IsRunning
IsInterruptedSignature
this.IsInterrupted
IsSucceededSignature
this.IsSucceeded
IsFailedSignature
this.IsFailed
RunningSignature
Running
Summary
| Name | Signature | Synopsis |
|---|---|---|
| IsRunning | this.IsRunning | No description available. |
| IsInterrupted | this.IsInterrupted | No description available. |
| IsSucceeded | this.IsSucceeded | No description available. |
| IsFailed | this.IsFailed | No description available. |
| Running | Running | The fiber is currently running. |
| Succeeded | Succeeded | The fiber completed with a successful value. |
| Failed | Failed | The fiber completed with a typed failure or defect. |
| Interrupted | Interrupted | The fiber completed with an interruption cause. |

