When exactly is the EDT started? What line of code is responsible of it?
My guess is that "someSwingComponent.setVisible(true)" does the trick, but I'm not sure.
Thanks!
|
When exactly is the EDT started? What line of code is responsible of it? My guess is that "someSwingComponent.setVisible(true)" does the trick, but I'm not sure. Thanks! |
|||
Q: When exactly is the EDT started? What line of code is responsible [f]of it?The inner workings of Swing are JVM-specific. Different JVMs start the Event Dispatch Thread (EDT) based on differing criteria. In general though:
The stack traces below reaffirm this point. Take for example the following
In the example above, the line of code responsible for starting the EDT is The above Using the Mac's JDK on the
Using Oracle's JDK for Windows on the
On the Mac, a call to As another example, consider the following
Using the Mac's JDK on the
Using Oracle's JDK for Windows on the
The call to Thoughts on 'My guess is that "someSwingComponent.setVisible(true)" does the trick, but I'm not sure.'Not just any call to
ResourcesOf course, there are many resources online about the EDT.
|
|||||
|
code for test
|
|||
|
|
|
EDIT: You guys are right; The EDT is not started directly on startup. I did some debugging and this is what I found: The Event Dispatch Thread is lazly started whenever a component requests access to the event queue by calling Toolkit.getEventQueue(). This can be done when Component.show() is called (the same as Component.setVisible()) but there are also other calls which can trigger this initialization like Component.repaint(). Once a reference to the eventqueue is obtained a job can be added to it with EventQueue.postEvent(). This method checks if the EDT exists and if it doesn't it creates it with initDispatchThread(). The only way to prevent it from starting is to start the JVM in headless mode (which disables AWT all together) with the "-Djava.awt.headless=true " flag. But thats basically the only low level interaction you can have with it. The setVisible method of a Component should always be invoked on the EDT (just like any other modification you make to an Swing / AWT component). You use the EDT by telling Java to execute code on the EDT. The easiest way todo this is to use SwingUtilities.invokeLater(). This schedules your Thread (your Runnable implementation) to be executed from the EDT. This is the only kind of interaction you as a developer should have with the EDT. You shouldn't have any kind of low level interaction with the EDT like pausing or aborting the thread. |
|||||
|
EventQueue.initDispatchThread, so putting a breakpoint there may give you some insight. – creemama May 26 '12 at 21:30