ProcessModes - Process modes
Process modes describe the way of processing processes in the queue.
Enumarators overview
- APM_global
 (3) - Process actions in global queue
 
- APM_immediately
 (4) - Process the request immediately without queuing
 
- APM_local
 (2) - Local processing
 
- APM_undefined
 (0) - Processing mode undefined
 
Enumerator details
- 
APM_undefined - Processing mode undefined
 Processes in the queue will not be processed unless the process mode is changed to local or global Code: 0
 to list
- 
APM_local - Local processing
 Processes in the queue will be processed locally. This requires, that a local process engine has been started. Otherwise, processes in the queue will not be processed until a local process engine with the current queue name is started. Code: 2
 to list
- 
APM_global - Process actions in global queue
 Actions are processed by one or more external process (ODE Queue Manager). Code: 3
 to list
- 
APM_immediately - Process the request immediately without queuing
 In this mode, the ODE is locked until processing has finished. Code: 4
 to list

