Given tight linkage between the service and it async counterpart, I
wonder why the convention is not to put these together in one file,
much like a GwtEvent and its EventHandler:

public interface AccountsService extends RemoteService {
    AccountRequestDto update(AccountRequestDto request) throws
NotLoggedInException;

    interface Async {
        void update(AccountRequestDto request, final
AsyncCallback<AccountRequestDto> async);
    }
}

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