namespace ZB.MOM.WW.OtOpcUa.Host.Domain
{
///
/// Runtime state of a deployed Galaxy runtime host ($WinPlatform or $AppEngine) as
/// observed by the bridge via its ScanState probe.
///
public enum GalaxyRuntimeState
{
///
/// Probe advised but no callback received yet. Transitions to
/// on the first successful ScanState = true callback, or to
/// once the unknown-resolution timeout elapses.
///
Unknown,
///
/// Last probe callback reported ScanState = true with a successful item status.
/// The host is on scan and executing.
///
Running,
///
/// Last probe callback reported ScanState != true, or a failed item status, or
/// the initial probe never resolved before the unknown timeout elapsed. The host is
/// off scan or unreachable.
///
Stopped
}
}