is it possible to update running process without stopping the job?
I have process which run the sub processes by the sequence (like queue)
when master process stop, all sub processes (about sub processes) are stop aswell.
if I need to insert additional sub process to master job,
then I need to update running master process (which is attended bot)
is it possible to update running process without stopping the job?
I’m trying to check queue
master process handle the sub process as queue.
I had no choice with StudioX.
today is my second day using studio (not studioX)
Is your “Master” process duing something else but invoking sub-processes using the InvokeProcess activity?
If not you can
1/ define list of sub-processes in an external resource (e.g. excel file or JSON or whatever)
2/ in “Master” read sub-processes from that external resource to a list (or datatable)
3/ in a loop take sub-process names one by one from the list and run it using InvokeProcess activity
4/ start over from 2/
While “Master” is processing the list of sub-processes retrieved in 2/ you could change the external resource containing list of sub-processes so that in the next loop “Master” can run another set of sub-processes.
I use successfully such approach in my automation.