13 Şubat 2013 Çarşamba 12:14:50 UTC+2 tarihinde Jens yazdı:
>
> What I mean is code like
>
> Scheduler.get().scheduleDeferred(..... RootPanel.get().add(labelA); 
> RootPanel.get().add(labelB); ...)
> RootPanel.get().add(... labelC...)
>
> will probably result in an UI:
>
> labelC
> labelA
> labelB
>
> because the deferred command is executed after any other code completes. 
> But inside the command the code is executed in order. So when you wrap your 
> whole work in such a command the work itself will be executed as normal but 
> the execution itself will start later. 
>
> Just be aware that code that executes after the code line that starts the 
> command should not depend on the results of the command.
>
> -- J.
>  
>
 
 
and what if there are some random labels that are coming from server , 
lets say labelD is pushed during the execution of labelC
 
then
 
might it be placed in between? like
labelC
labelD(incoming)
labelA
labelB
 
 
 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to