PriorityTaskScheduling Enumeration | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
  
    Namespace: 
   Tangosol.Net
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic enum PriorityTaskScheduling
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Standard | 0 | 
            Scheduling value indicating that this task is to be queued and
            executed in a natural (based on the request arrival time) order.
             | 
 | First | 1 | 
            Scheduling value indicating that this task is to be queued in
            front of any equal or lower scheduling priority tasks and
            executed as soon as any of the worker threads become available.
             | 
 | Immediate | 2 | 
            Scheduling value indicating that this task is to be immediately
            executed by any idle worker thread; if all of them are active, a
            new thread will be created to execute this task.
             | 
See Also