Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-12-2008, 05:26 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,338
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Java threading
Hi all,

Is anyone of you know a tutorial/working example/articles on Threads.

Thanks.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 03-12-2008, 05:23 PM
Senior Member
 
Join Date: Jul 2007
Posts: 1,022
hardwired is on a distinguished road
Lesson: Concurrency
Lesson: Concurrency in Swing
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 03-13-2008, 06:30 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,338
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Thankx pal,

I have a issue in my thread. I have simply write this thread in a separate class.

Code:
public class Processing{ Thread tempTH = new Thread(new Runnable() { public void run(){ int counter = 0; while(counter <= 10){ try { System.out.println(counter++); Thread.sleep(1000); } catch (InterruptedException ex) { System.out.println(ex); } } } }); }
Then I call this thread, simply start the thread, in another class which I used to implement a GUI, in a click event as follows.

Code:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: Processing appProcess = new Processing(); appProcess.tempTH.start(); }
Is that ok. I test it few times that the numbers are printed to console. Actually it works up to now. But why I worried is this.

Even I don't use a thread to implement my GUI, is there a possibility to suspend the GUI actions(I mean possibility to freeze GUI, its controls, etc) when running my second thread.

Because why I think this is, I don't know that Java internally use a thread to run the GUI...

Any comments for me pal...
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Threading prob.. banie Java Applets 0 02-05-2008 07:30 AM
Explanation bout threading and concurrency? cruxblack New To Java 1 08-10-2007 11:33 AM
question about Multi threading in Java fred Advanced Java 1 07-24-2007 02:55 AM


All times are GMT +3. The time now is 03:12 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org