namespace RobotNet.Script.Shares;
public enum ProcessorState
{
///
/// The processor is idle and not currently processing any scripts.
///
Idle,
///
///
///
Building,
///
///
///
Ready,
///
///
///
Starting,
///
/// The processor is currently running a script.
///
Running,
///
///
///
Stopping,
///
/// The processor encountered an error while running a script.
///
Error,
///
///
///
BuildError,
}