Is Component.getGraphicsConfiguration thread safe? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T20:17:02Z http://stackoverflow.com/feeds/question/686333 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/686333/is-component-getgraphicsconfiguration-thread-safe 0 Is Component.getGraphicsConfiguration thread safe? Tom Martin 2009-03-26T15:41:36Z 2009-03-26T15:59:04Z <p>There are many methods you shouldn't call if you are not on the AWT event thread. These are generally methods that manipulate the UI in some way.</p> <p>Is this the case with Component's getGraphicsConfiguration(...)? It is only a getter but it appears to cause a deadlock if the event thread is waiting on the thread calling this method.</p> <p>Whilst solving the deadlock is fairly trivial (avoid using wait or synchronize on the event thread), should I only be calling getGraphicsConfiguration in a Runnable passed to SwingUtilities.invokeLater(...) or invokeAndWait(...)?</p> http://stackoverflow.com/questions/686333/is-component-getgraphicsconfiguration-thread-safe/686395#686395 1 Answer by Tom Hawtin - tackline for Is Component.getGraphicsConfiguration thread safe? Tom Hawtin - tackline 2009-03-26T15:59:04Z 2009-03-26T15:59:04Z <p>AWT thread-safety is (necessarily) broken. Just don't go anywhere near it. Stay on the straight AWT EDT</p> <p>Also note that just because a method is in <code>java.awt.Component</code>, it does not mean that the object (or an object referenced by it) is not in Swing and therefore really not even pretending to be thread-safe at all. (Enough nots?)</p>