InterviewSolution
Saved Bookmarks
| 1. |
What Is A Scheduledexecutorservice? |
|
Answer» SCHEDULEDEXECUTORSERVICE extends ExecutorService and provides methods that can schedule commands to run after a given delay, or to execute periodically. It has methods that execute a Runnable or Callable TASK after a specified delay.
ScheduledExecutorService extends ExecutorService and provides methods that can schedule commands to run after a given delay, or to execute periodically. It has methods that execute a Runnable or Callable task after a specified delay. |
|