Javascript is single threaded, so the event code has to wait its turn.  
If a tight loop or something is running, the event's code won't  
execute until the loop is finished.

If you need events to fire in the middle of long running processes (or  
simply don't want the browser to act frozen) place those processes  
into an IncrementalCommand.

-jason


On Jul 29, 2009, at 4:37 PM, [email protected] wrote:

>
> Hey i was coding a GWT App and a question came up:
>
> Does an event like MouseOver interrupt already running code or does it
> even fire? Or is it put on the top of a stack like Deferred Command?
>
> Is there a website where all this is explained?
>
> Thx in advanced
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to