Hi, I wonder if a running instance of a subflow has some unique id?
I need to temporary save a variable in (i.e. in global context) unique to a subsystem instance. If there is, is there then any way to "grab" that id from inside the subflow?
So basically, this is how the subflow works:
- I have several instances of the subflow running
- any instance can at any time send a request to a single external process for analyzing
- when the result then is returned, I need to match this to the correct subflow instance, the issuing instance of the request
If the subflow instance would have a unique id I could basically store the variable like "global.set(subflow_id, my_variable);" and then when the result is returned check and match it