Hello,
I have a temporal activity A which returns an array of strings.
I want to execute an activity B for each string in this array.
I also want the process to sleep one minute between each activity B.
What is the best design for this?
Does temporal have something built in or should I just call activity B in a loop?
Thank you!
I am running the workflow as cron, with the cron_schedule argument.
On each run, the loop of activity B will have no more than 1000 iterations.
Should I still watch the workflow history?