Java Swing Programming Question:
Why should any swing call back implementation execute quickly?
Answer:
Callbacks are invoked by the event dispatch thread. Event dispatch thread blocks processing of other events as long as call back method executes.
Previous Question | Next Question |
What is the What is the difference between invokeAndWait() and invokeLater()? ? | What is an applet? |