The TaskManager Class contains the following constructors:
TaskManager(ThreadGroup threadGroup)
TaskManager(ThreadGroup threadGroup, boolean runTasksAsDaemons)
Constructs a new TaskManager object.
public TaskManager(ThreadGroup threadGroup);
threadGroup | The thread group that the task manager creates threads in. |
Constructs a new TaskManager object.
public TaskManager(ThreadGroup threadGroup, boolean runTasksAsDaemons);
threadGroup | The thread group that the task manager creates threads in. |
runTasksAsDaemons | Set to true if the tasks in this task manager are to run on daemon threads; otherwise, set to false. |