InterviewSolution
| 1. |
What Is Newt's Threading Model For Native Window Events ? |
|
Answer» As of today, Newt's DEFAULT threading model to handle native events is the event DISPATCH thread (EDT) model. Newt's EDT impl. creates one EDT per NEWT Display, as the Display is a unique abstraction of a graphics device connection SERVING all of it's Screens and Windows. EDT is being used to
EDT is not
Using EDT is not mandatory, and you can turn it off in the NewtFactory, and deal with the event dispatch manually. As of today, Newt's default threading model to handle native events is the event dispatch thread (EDT) model. Newt's EDT impl. creates one EDT per NEWT Display, as the Display is a unique abstraction of a graphics device connection serving all of it's Screens and Windows. EDT is being used to EDT is not Using EDT is not mandatory, and you can turn it off in the NewtFactory, and deal with the event dispatch manually. |
|