I have a TimerTask that is designed to gather metrics at a specific interval. However it is possible that the period of the task execution is less than the time of task execution (occasionally if something times out and gets delayed).
Is there a way to execute multiple TimerTasks or Runnables, threads, etc. concurrently without waiting for the previous task to complete?
I know that Timer uses a single thread, and the ScheduledThreadPoolExecutor will delay execution regardless of the rate.
Thanks.
See Question&Answers more detail:os