Like joining two threads using join(), is there a way to join a thread to a ExecutorService object (a thread pool) ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
According to the docs, you could, from your second thread, call the shutdown method of your executor service and next, call for awaitTermination. This method will block till completion of all submitted jobs in the executor service. |
||||
|
|