Skip to content

Instantly share code, notes, and snippets.

@galak-fyyar
Created October 19, 2011 12:07
Show Gist options
  • Save galak-fyyar/1298111 to your computer and use it in GitHub Desktop.
Save galak-fyyar/1298111 to your computer and use it in GitHub Desktop.
GWT asynchromious load
GWT.runAsync( new RunAsyncCallback() {
public void onFailure( Throwable caught ) {
Window.alert( "Code download failed" );
}
public void onSuccess() {
Window.alert( "Hello, async callback" );
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment