topics
how can we keep things simple?
availableProcessors
SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } });
- how to execute short tasks.
- tasks with a result
- recurring tasks with try/catch
- newCachedThreadPool, newScheduledThreadPool
http://refcardz.dzone.com/refcardz/core-java-concurrency?oid=hom11507
Add Comment