First of all thank you for your reply:)
In fact I'm a beginner and I just discovered GWT and i dont
understand many pattern like the activity pattern but in regard to mvp
im using the GWT-Presenter
Framework.
brief the binding is done in this way
bindPresenter (
Presenter.class,
Presenter.Display.class,
View.class);
what should i do to optimize my code?
my binding code should it be something like this?
bind (Presenter.class). in (Singleton.class);
bind (Presenter.Display.class). toProvider (asyncProvider);
then have you an example of asynchronous provider and what do you
think about GWT Presenter is it was the right solution? or i have to
change to another framework? if you were me what would you have
chosen?
On 16 juin, 17:14, Thomas Broyer <
t.bro...@gmail.com> wrote:
> GIN's AsyncProvider might help.
>
> If you're using Activities, you can also put GWT.runAsync in your Activity's
> start() method. See
> alsohttp://
code.google.com/p/google-web-toolkit/issues/detail?id=5129