Hello,
Silly question (as usual) : wanting to make some sort of hooks between several services, I wondered if it was possible to :
- define a timer and run it from the Starter service
- Wait For the Starter.Timer_Tick from other currently running service
This is absolutely not critical at all and just pure curiosity (and a will to ease some coding too, btw).
It is not possible. The event will be raised in the service that holds the timer. It is not possible to wait for this event from other services. You can however use CallSubDelayed to call a different service from the Tick event and wait for that event in the other service.