AppStatusUnion

PackageAxial
Describes the lifecycle state of a running application.

Specification

Kind
Union
Members
6
Examples
0
IsCompletedSignature
this.IsCompleted
IsStoppingSignature
this.IsStopping
IsRunningSignature
this.IsRunning
RunningSignature
Running
StoppingSignature
Stopping

Summary

NameSignatureSynopsis
IsCompletedthis.IsCompletedNo description available.
IsStoppingthis.IsStoppingNo description available.
IsRunningthis.IsRunningNo description available.
RunningRunningThe root workflow is running.
StoppingStoppingStop has been requested and the root workflow is finishing cleanup.
CompletedCompletedThe root workflow and all of its scope finalizers have completed.

IsCompleted

this.IsCompleted
Member

Returns

bool

IsStopping

this.IsStopping
Member

Returns

bool

IsRunning

this.IsRunning
Member

Returns

bool

Running

Running
Member
The root workflow is running.

Returns

unit

Stopping

Stopping
Member
Stop has been requested and the root workflow is finishing cleanup.

Returns

unit

Completed

Completed
Member
The root workflow and all of its scope finalizers have completed.

Returns

unit