Tagged Questions

1
vote
4answers
2k views

How to schedule a Callable to run on a specific time?

I need to run a callable at a specific time of day. One way to do it is to calculate the timediff between now and the desired time , and to use the executor.scheduleAtFixedRate . Have a better idea? ...