| Author |
Thread Joining and ExecutorService
|
Harsha Smith
Ranch Hand
Joined: Jul 18, 2011
Posts: 287
|
|
|
how to call join method on a thread that was started by ExecutorService object?
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3053
|
|
|
You shouldn't. Instead, when you submit a task to the ExecutorService, you can use the Future of that task to wait until the task is finished, through the get() method.
|
 |
John Vorwald
Ranch Hand
Joined: Sep 26, 2010
Posts: 139
|
|
You may be able to assign a runnable to wait on, and then submitted the object to an ExecutorService.
See question on join.
|
 |
 |
|
|
subject: Thread Joining and ExecutorService
|
|
|