AppStatusUnion

PackageAxial
Describes the lifecycle state of a running application.

Specification

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

Summary

NameSignatureSynopsis
IsRunningthis.IsRunningNo description available.
IsStoppingthis.IsStoppingNo description available.
IsCompletedthis.IsCompletedNo 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.

IsRunning

this.IsRunning
Member

Returns

bool

IsStopping

this.IsStopping
Member

Returns

bool

IsCompleted

this.IsCompleted
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