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: 7,513
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default 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.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #2 (permalink)  
Old 03-12-2008, 05:23 PM
hardwired's Avatar
Senior Member
 
Join Date: Jul 2007
Posts: 1,577
Rep Power: 4
hardwired is on a distinguished road
Default
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: 7,513
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Wink
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.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

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

BB 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 +2. The time now is 06:13 PM.



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