The only difference between hosted and web mode is that in hosted mode 
GWT.runAsync() acts synchronously. A code like:

void onLoginSuccessful() {
  doBeforeAppStart();
  GWT.runAsync( // load app and start app in onSuccess() )
  doAfterAppStart();
}

will behave differently in hosted and web mode. In hosted mode it will be 
executed in the order above but in web mode onSuccess() can be called after 
doAfterAppStart() has finished. So you may want to check your code to see if 
it behaves correctly.

Otherwise I have not seen any problems with split points so far. 

-- J.

 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/yO_Ukx6tqv0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to