-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Java 9 Concurrency Cookbook, Second Edition
By :

The Executor framework provides the ThreadPoolExecutor
class to execute concurrent tasks using a pool of threads that helps you avoid all thread creation operations. When you send a task to the executor, it executes the task as soon as possible according to its configuration. When it ends, the task is deleted from the executor, and if you want to execute it again, you have to send it to the executor again.
However, the Executor framework provides the possibility of executing periodic tasks through the ScheduledThreadPoolExecutor
class. In this recipe, you will learn how to use this functionality of the class to schedule a periodic task.
The example of this recipe has been implemented using the Eclipse IDE. If you use Eclipse or a different IDE, such as NetBeans, open it and create a new Java project.
Follow these steps to implement the example:
Task
and specify that it implements the Runnable
interface...