Flowgear Dequeue
Flowgear Queues provide a way to implement asynchronous workflow processing through a Site-specific Flowgear queue. This Node de-queues messages from the specified queue.
Version History
1.0.0.2 Initial Release
Properties
Message
Type: Multiline Text Output
The content of the message
Queue
Type: String
The name of the queue. This name is not case-sensitive.
A queue name must start with a letter or number, and can only contain letters, numbers, and the dash (-) character.
Naming Queues and Metadata - Azure Storage | Microsoft Learn
MessageType
Type: List Input
The data type for the queue items
Text - indicates that messages will be regarded as strings
Binary - indicates that messages will be regarded as byte arrays
Remarks
Use this Node to support asynchronous Workflow patterns. Typically one Workflow will be responsible for accumulating tasks by receiving them from a consumer and loading them on to a queue. A second Workflow will then be responsible for de-queuing these tasks in order to process them asynchronously.
The queues are isolated from each other per Flowgear Site.
This Node leverages the Azure Storage SDK and includes automatic retry.