hi,
just for you information, I had a confirmation of how the timerhandle works now:
“If you have two different timerhandles referencing the same function then each one will have a unique id that can be used independently of each other.”
That’s mean that each handle manage its own timer. So if you are overring a class and want to put a timer on a function, you may look at the main class level to see if no one set a timerhandle on it or you will have some surprise that it will be called twice.
As a principle, I encourage you to set your timer as protected and not private, so you can reuse it in child class.