Does Blue Prism provide an easy way to retry a process after X minutes in case of a failure? Lets say that I run a process. It fails due to some data not being available. How can I retry the process in 1-2 hour time?
I was thinking about adding the process to a queue at a specified time, and have the scheduler run the "Get Next Item" from queue at a later time, and X minutes later in case of a failure. For example at 14:00, and if the process fails to run at 14:00 due to some data missing, we retry at 16:00 by deferring the queue item. However, if it succeed at 14:00, it will still run the process at 16:00 by "Getting the Next Item", even though the queue is empty.
Is there an easier way to retry a process in X minutes?