I am new to Java and using a code given by someone. There, at the end of the code, they interrupt a thread if it has not finished. I am measuring the timing of the code.
The problem is that the Java code first issues all the threads, and then at the end it interrupts. Is interrupting necessary? Can't we wait till all threads actually finish? Or may be just skip interrupting (these threads are running processes using process exec command and they will finish anyway). Here is the relevant code. First the code for individual thread:
String commandString = "./script.scr ";
process = Runtime.getRuntime().exec(commandString);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
while ((lsString = bufferedReader.readLine()) != null)
{
System.out.println(lsString);
}
try
{
process.waitFor();
}
Now the code of the part which dispatches these threads:
public void stopWhenAllTaskFinished()
{
while(notFinished) {sleep(50);} //notFinished is class variable and somewhere else it will set to false.
//now finished.
//Interrupt all the threads
for (int i=0; i<nThreads; i++) {
threads[i].interrupt();
}
}
This function is called from main class like:
obj.stopWhenAllTaskFinished()
I greatly appreciate any insight or answer.
Threaddoes. – Frankie May 2 '12 at 1:35notFinishedworks. (For example, could there be a case wherenotFinishedis clear but one of those threads is still blocked indefinitely inprocess.WaitFor? If so, you either need to interrupt it or fix that. Ideally, fix that.) It matters whether the threads are a pure AND operation (we're not done until all threads are done) or are a more complex operation (thread A did something so we don't need thread B to do it, even though thread B is trying to). – David Schwartz May 2 '12 at 2:23