I’m trying to create a condition that my automation puts a queue item into a queue on failure.
Catch is i don’t want the queue item to be processed immidiately, but rather an hour after last failure.
I’m wondering how the postpone queue item works.
Does the trigger, trigger of the queue item creation or does it realize that it’s been postponed for an hour and runs it when the ‘timer’ has run out?
Or does it run at creation point and fail due to the item not being processable? In this case, what happens then??
Postpone queue item works this way that the queue item is postponed till the time given, and it is not picked for pressing until and unless that time is reached.
Here from picture you can see how it looks like when we postpone a queue item. UiPath places a time on it and the queue item is processable only after mentioned time.
In the Postpone field, add the date after which this item can be processed.
In the Deadline field, add the date before which this item has to be processed.
The Deadline and Postpone properties add a new priority to queue items. For example, a queue item which is due today at 7 pm and has a Medium priority is processed first, before another item that has no due date and a High priority.
If you have a trigger placed on your queue, then it will be treated just like other queue items after the postpone time.
If you don’t have any trigger on your queue, then you will have to check the queue if there’s any queue item to process, but again it will be only be considered to process after postpone time.