I have a process that has a Timer start events and gets executed every minute. I want to stop this timer, so no more process executions take place. How can I send a signal/ interrupt to this process from another process?
Thanks,
@adat
I have a process that has a Timer start events and gets executed every minute. I want to stop this timer, so no more process executions take place. How can I send a signal/ interrupt to this process from another process?
Thanks,
@adat
Hi adat,
one way which comes to mind is move your current process into a non-interrupting event driven sub process. Then your main process can be a driver process along the lines of;
Start->Wait For Kill Signal (receive task)->End
Hence the driver process will wait until a kill message arrives, the timer event subprocess will repeat whilst the driver process remains…
regards
Rob