InOrderThreadPoolQueue.QueueAction Method (Action)

 

Queues a work item to the InOrderThreadPoolQueue.

Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)

Syntax

public void QueueAction(
    Action action
)
public:
void QueueAction(
    Action^ action
)
Public Sub QueueAction (
    action As Action
)

Parameters

  • action
    Type: System.Action

    The work item to perform on a threadpool thread.

Remarks

The action is not started until all previous work items finish.

See Also

InOrderThreadPoolQueue Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace

Return to top