0

Can anyone please explain how I can avoid using an aync class when using dto to serialize an object in a service?

Alex
  • 2,011
  • 3
  • 21
  • 27
cometta
  • 35,071
  • 77
  • 215
  • 324

1 Answers1

0

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
  • 531
  • 4
  • 16