hi there,

my gwt app it getting pretty big, so i looked into code splitting - but it
looks like magic to me in non trivial cases.
i have about 20 gwt modules, and all entry points implement an abstract
entry point:

public void onModuleLoad() {
this.LOGGER.info("initializing module");
try {
initModule();
} catch (Throwable t) {
this.LOGGER.info("error while initializing module");
ErrorHandling.handleEverything(t);
}
}

if i put gwt.runasync around "initModule", will every module be compiled
into its own js source file? if not, how can i achieve that? so i have to
change every implementation of "initmodule"?

-- 
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