What happens if you press a key and click the mouse at exactly the same time?
>> One of the event handlers executes and the other waits in the event queue until the first handler finishes.
You can't control the order that the system inserts events into the event queue and only one event handler executes at a time.