InOrderThreadPoolQueue.QueueHighPriorityAction Method (Action)
Queues a work item to the InOrderThreadPoolQueue at high priority.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
public void QueueHighPriorityAction(
Action action
)
public:
void QueueHighPriorityAction(
Action^ action
)
Public Sub QueueHighPriorityAction (
action As Action
)
Parameters
action
Type: System.ActionThe work item to perform on a threadpool thread.
Remarks
The action is not started until all previous high-priority work items finish, but before any other normal-priority items.
See Also
InOrderThreadPoolQueue Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top