Java Concurrency a short guide

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

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.