Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

Best way to use Thread.join() in Java?


Old topic!
Guest, the last post of this topic is over 60 days old and at this point you may not reply in this topic. If you wish to continue this conversation start a new topic.

  • You cannot reply to this topic
No replies to this topic

#1 tom_mai78101   Members   -  Reputation: 285

Like
0Likes
Like

Posted 23 March 2012 - 10:44 AM

I have here a small code snippet of my own take on calling Thread.join() in Java.

public void pause(){
  running = false;
  boolean retry = true;
  while (retry){
   try{
	thread.join();
	retry = false;
   }
   catch (InterruptedException e){
	retry = true;
   }
  }
}

This pause() stops a Thread.run() while loop (of another instance of Thread) from running continuously with the flag "running" set to false. Then I tried looping the thread.join() in order to get absolutely 100% on thread joining.

Is this the preferred and simple way of joining threads? What else out there are also efficient in thread joining? Thanks in advance.

Sponsor:



Old topic!
Guest, the last post of this topic is over 60 days old and at this point you may not reply in this topic. If you wish to continue this conversation start a new topic.



PARTNERS