Hi guys! I have a piece of code where I need to que (?) - to plan to execute few subroutines with different delays starting from same time. i.e
timer.performWithDelay(1000, …, 1)
timer.performWithDelay(5000, …, 1)
timer.performWithDelay(8000, …, 1)
timer.performWithDelay(9000, …, 1)
But they are starting at the same time. Are these different instances of timer.performWithDelay or one same and I’m only changing it’s params?
Otherwords can I start few instances of this function, not only reference?