Hello,
I am curious to know the best way to implement the following situation:
I have a process that issues a message. That message should trigger a subprocess start. The end of that subprocess (I ended it at a somewhat arbitrary point) should initiate a new subprocess. Each subprocess is confined within a single parent process.
When I say "best way" I simply mean to ask which types of events/tasks likely best accomplish my abstract model. I also do not know much about subprocess scope; e.g., is it possible for a subprocess end signal to trigger another subprocess start?).
Thanks!
Jeff