PriorityTaskScheduling Enumeration |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Namespace:
Tangosol.Net
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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