I have a script that calls run_at()
services. Some of them days out, some months out…
Once the scrip executes, i am not sure how to look up all the tasks that were scheduled?
Is this possible?
I have a script that calls run_at()
services. Some of them days out, some months out…
Once the scrip executes, i am not sure how to look up all the tasks that were scheduled?
Is this possible?
I guess you want to use info_timer().
I was under the impression that every time the app is triggered it would create a new handle for the run_at()
being called at that time.
So if over the past month i called run_at()
lets say 5 times… can i use the info_timer()
to see all my scheduled service calls?
Not exactly. You have to have the handler of the run_at() call to use in info_timer(handle). Perhaps you could use get_scheduler_entries(). But not sure…