InOrderThreadPoolQueue Constructor (Action<Action>)
Initializes a new instance of the InOrderThreadPoolQueue class.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
public InOrderThreadPoolQueue(
Action<Action> queueRunActions
)
public:
InOrderThreadPoolQueue(
Action<Action^>^ queueRunActions
)
Public Sub New (
queueRunActions As Action(Of Action)
)
Parameters
queueRunActions
Type: System.Action<Action>The method used to queue work. When QueueAction or QueueHighPriorityAction is called, if there is not already an action in progress, this method is used to queue a "runActions" callback that will run the action passed in.
See Also
InOrderThreadPoolQueue Overload
InOrderThreadPoolQueue Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top