GeekArticles
Java
J2SEControlling Threads by Example
Author: onjava.com |
Published: 10th Apr 2007 |
Visited: 123 times |
Add CommentFiled in: J2SE
The methods people commonly think of for controlling threads were deprecated long ago, and are not safe to use. In this article, Viraj Shetty shows the appropriate techniques for starting, pausing, resuming, and stopping activities taking place in a multithreaded application.
Read Article Sponsored Links
Related Articles
• Multicore Development: Untangle Your Threads using Sun Studio Exploit the multiple cores in your machine using the Sun Studio software. Find out how Sun Studio compilers allow you to parallelize your application, dbx and the Thread Analyzer tools can detect data races and potential deadlocks, and the Performance Analyzer allows you to analyze the performance o ...
• Controlling the Number of Application Instances in Advanced Delphi :: In this article you'll learn how to "run-once" enable a Delphi application that can check for its previous (running) instance. Along the process, several technique ...