I want to run mutliple procedures in parallel on a server in fixed time ntervals. The idea was to ,e.g., simply use “@spawnat :any” together with “Timer”, however, I cannot find a way to stop the Timer once its started. Does anyone know how to stop this?
# if started on a worker, how can I stop this? close(?)
unstoppable = fetch(@spawnat(:any, Timer((x)->println("Hello"), 0; interval = 10)))
The other way around, using a “Timer” to trigger "@spawnat :any"s, it can be stopped using close, but I would prefer to have the first approach running, as I have persistent data between each run.