Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

IPriorityTask scheduling priority constants.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public enum PriorityTaskScheduling

Members

Member nameDescription
Standard
Scheduling value indicating that this task is to be queued and executed in a natural (based on the request arrival time) order.
First
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
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