Both Dispatcher and performer should be in single REframework

  1. Add Get Queue Items activity (name: “Get Queue Items”) and configure it.
  2. Create a variable of type QueueItem (name: “queueItems”).
  3. Set the Output > Result property of Get Queue Items activity to “queueItems”.
  4. Add an If activity and set the condition to “queueItems.Count > 0”.
  5. Inside the “Then” section of the If activity, include your logic for processing the queue items when the queue has data.
  6. Inside the “Else” section of the If activity, use the Add Queue Item activity to add new items to the queue.