Is a new Thread created when Runnable is used with SwingUtilities.invokeAndWait()?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
No,a new thread is not created when Runnable is used with |
|||||
|
|
invokeAndWait API.
|
|||||||||||
|
|
No. The purpose of the method is to run the Runnable on the GUI event thread, which I would assume you have already. |
|||
|
|
no it triggers an event on the AWT event thread (which is already running in gui apps) |
|||
|
|