ThreadProcessState Enumeration

Namespace: id3.Devices

Definition

Defines the lifecycle states of a thread’s process, from initiation through active operation to cessation.
class ThreadProcessState
enum ThreadProcessState
public enum ThreadProcessState
public enum ThreadProcessState
typedef enum id3DevicesThreadProcessState

Fields

Name

Value

Description

start

0

Indicates the initial state where the thread process is being started but has not yet entered its main operational loop.

run

1

Denotes the active state of the thread where it is executing its designated tasks or operations.

stop

2

Signifies the final state where the thread is stopping, either completing its operations or being terminated.