Tuesday, July 6, 2010

Advantages of Data Transfer Objects - Design pattern:

Definition:

Using a serializable class to act as data carrier, grouping related attributes, forming a composite value and working as a return type from remote business method. formerly known as Value Objects or VO.

Following are the list of advantages by using Data Transfer Objects design pattern:

  • Get related values from remote business method
  • Fetch multiple values in one trip
  • Decrease network traffic
  • Minimize latency and server resource usage

No comments:

Post a Comment