Skip to content

Enum ThreadPriority

Namespace: Belay.Attributes
Assembly: Belay.Attributes.dll

Defines the priority levels for thread execution.

csharp
public enum ThreadPriority

Fields

High = 2

High priority thread for time-critical operations.

Low = 0

Low priority thread for background tasks.

Normal = 1

Normal priority thread for standard operations.

Remarks

Thread priority is a hint to the scheduler and may not be supported on all MicroPython platforms. Actual scheduling behavior depends on the underlying platform and available threading implementation.

Released under the Apache License 2.0.