Enum 470 Job Queue Priority
- App
- Base Application
- Namespace
- System.Threading
- Versions
- 24-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Modules/System/JobQueue/JobQueuePriority.enum.al14 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Threading;
/// <summary>
/// Specifies the priority of a job in the job queue. Only used for jobs with a Category Code, which is used for serialization of jobs.
/// </summary>
enum 470 "Job Queue Priority"
{
Extensible = true;
Caption = 'Job Queue Priority';
value(1000; "High") { Caption = 'High'; }
value(2000; "Normal") { Caption = 'Normal'; }
value(3000; "Low") { Caption = 'Low'; }
}