GWT RequestFactory RequestContext.append what guarantees on order of firing receivers?

60 views Asked by At

If I have two or more request contexts (appended) each with one or more service method requests is there any guarantee on the order the receivers are fired?

The code seems to fire service method receivers in the order they were called and then the requestcontext (void) receiver. Is that just current behaviour and subject to change?

Cheers

Sam

1

There are 1 answers

1
Thomas Broyer On

The order receivers are called is guaranteed to be the order methods have been called on the RequestContexts; this is by-design.
The same is true for the order methods are called on the server-side.