Thread.ThreadStates
From Xojo Documentation
Enumeration
Specifies all possible states a thread can be in.
Values
Enum | Description |
---|---|
Running | The code is executing. |
Waiting | The thread has been blocked by a call to Signal or Enter from one of the locking mechanisms, CriticalSection, Mutex, or Semaphore. |
Paused | The code has halted because the Pause method was called. |
Sleeping | The code has halted because the Sleep method was called. |
NotRunning | The code is not running the Start method has not yet been called or the code has already finished running. |