You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let task = Plan.every(5.seconds).do(action: startSome)
When I suspend() it somewhere and then resume for 10 seconds, I have 2 immediate calls of startSome.
But what I want is call startSome in (5sec - time remaining when I called suspend).
Is it possible?
The text was updated successfully, but these errors were encountered:
I have a task:
When I suspend() it somewhere and then resume for 10 seconds, I have 2 immediate calls of startSome.
But what I want is call startSome in (5sec - time remaining when I called suspend).
Is it possible?
The text was updated successfully, but these errors were encountered: