So I have a long running process that I want to encapsulate as a Runnable and dispatch it in a thread. To be more specific, I have a POST web service that creates a file in the file system but the creation of the file can take a very long time.
In the resource method of my web service, I want to be able to dispatch a thread to do the file creation and return the status 200. I don't think I can just do Thread.join because this would mean that the current thread would have to wait for the file creation thread to finish. Instead, I want to join the file creation thread to the main thread. Question is, how do I get the main thread in java?
anotherThread.join()it means that the thread intends to perform some action once it knows for sure thatanotherThreadhas completed execution. In your case, since you have already returned a response to the caller of your webservice, they won't be waiting for anything else from your service. If there is some cleanup or post-processing steps that need to be done after the file creation, you can run that in the thread creating the file. – Binil Thomas May 31 '11 at 20:52