views:

285

answers:

1

can anyone explain more how when using dto to serialized object , one can skip using aync class when using service?

A: 

If I understand your question, DTOs are only for passing data to the client side in a GWT application, when you can't pass the server side object directly. DTOs have nothing to do with the async classes, which the GWT compiler needs for RPC service calls.

KaizenSoze