WorkflowQueue Class
Represents a workflow queue.
Assembly: System.Workflow.Runtime (in System.Workflow.Runtime.dll)
Workflow queues are used to pass messages between a host or host services and activities in a workflow. Any activity can create a WorkflowQueue by calling WorkflowQueuingService.CreateWorkflowQueue, and a host, a service, or another activity can call Enqueue to add an item to that WorkflowQueue. You can subscribe to the QueueItemAvailable event to be notified when an item arrives on the WorkflowQueue. You can use Peek to examine an item at the beginning of the WorkflowQueue and Dequeue to remove an item from the WorkflowQueue. Each WorkflowQueue is associated with a WorkflowQueuingService that you can use to perform other management operations on the WorkflowQueue, such as deleting the queue. QueuingService exposes the WorkflowQueuingService associated with this WorkflowQueue.
The following code example demonstrates how you can create a WorkflowQueue by calling the WorkflowQueuingService.GetWorkflowQueue method. It also uses the Count property to determine whether any messages exist in the current queue. Finally, the code uses the Dequeue method to remove and return the first object in the queue.
This code example is part of the File Watcher Activity SDK Sample from the FileSystemEvent.cs file. For more information, see File System Watcher Activity.
Private Function ProcessQueueItem(ByVal context As ActivityExecutionContext) As Boolean Dim qService As WorkflowQueuingService = context.GetService(Of WorkflowQueuingService)() If Not qService.Exists(Me.QueueName) Then Return False End If Dim Queue As WorkflowQueue = qService.GetWorkflowQueue(Me.QueueName) ' If the queue has messages, then process the first one If Queue.Count = 0 Then Return False End If Dim e As FileWatcherEventArgs = CType(Queue.Dequeue(), FileWatcherEventArgs) ' Raise the FileSystemEvent MyBase.RaiseGenericEvent(Of FileWatcherEventArgs)(FileSystemEvent.FileWatcherEventHandlerEvent, Me, e) DoUnsubscribe(context, Me) DeleteQueue(context) Return True End Function
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.