vote up 2 vote down star

According to Swing tutorial:

Some Swing component methods are labelled "thread safe" in the API specification; these can be safely invoked from any thread. All other Swing component methods must be invoked from the event dispatch thread. Programs that ignore this rule may function correctly most of the time, but are subject to unpredictable errors that are difficult to reproduce.

But what are these Swing component methods that are labelled "thread safe"? Are there actually any?

flag

78% accept rate

3 Answers

vote up 3 vote down check

Google learns me that at least those are threadsafe.

link|flag
Thanks, I should learn to construct better non-trivial (?) Google queries :-) – Joonas Pulakka Nov 25 at 13:01
You're welcome. Here's an useful link anyway: googleguide.com/using_advanced_operators.html – BalusC Nov 25 at 13:53
vote up 2 vote down

But what are these Swing component methods that are labelled "thread safe"?

Most Swing components' methods are NOT thread safe. But some are. To find out which ones, you have no option but to peruse the javadocs for your target components. A carefully construction google search might quicken the process.

Are there actually any?

Yes there are indeed. Generally speaking, if you are working with Swing components, it is likely that you are going to have to invoke both thread-safe and non-thread-safe methods. Since most methods are non-thread-safe, I prefer to err on the side of caution, and perform all actions on them in a thread-safe manner anyway.

HTH

link|flag
You stole my link. – BalusC Nov 25 at 12:54
@BalusC Did not! Consider the fact that it takes a couple of minutes to type an answer before you jump to conclusions. – bguiz Nov 25 at 22:42
vote up 1 vote down

But you already have the answer: only those methods which are specifically documented as being thread-safe in the method JavaDoc, are threadsafe! this is from JTextComponent.setText

 * This method is thread safe, although most Swing methods
 * are not. Please see 
 * <A HREF="http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html">How
 * to Use Threads</A> for more information.

If the method documentation doesn't say it's safe, then it isn't safe: access to the JavaDoc is therefore critical when coding against Swing

link|flag
Yes, it's the implicit answer, but it still isn't a list of thread safe methods. – Joonas Pulakka Nov 25 at 13:00
You asked "are there any" and I provided an example. Um. – oxbow_lakes Nov 25 at 14:05

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.