Reputation: 1482
How do I get the remaining delay time of a Task that has been scheduled?
Let's say I schedule my Task
like this:
Timer.schedule(myTask, 10);
How Do I get the remaining delay time before the Task is scheduled without counting the time myself?
Upvotes: 1
Views: 230