Two Laptop Bag
The moose likes Threads and Synchronization and the fly likes Executor and applets Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "Executor and applets" Watch "Executor and applets" New topic
Author

Executor and applets

Barry Burd
Author
Ranch Hand

Joined: Jun 18, 2003
Posts: 73
With the introduction of the Executor in Java 1.5, is there a new framework for creating a Java applet? Should I still be using code like
thread = new Thread(this);
thread.start();
or is there a new pattern that I should be following?
Thanks.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Executor and applets
 
Similar Threads
Properly Synchronizing a Block of Code
ExecutorService invokeAll - blocking?
How can I serialize thread handling with Java 5's java.util.concurrent package?
Java concurrency
Required help in thread