layout, title, folder, permalink, pumlid, categories, tags
layout | title | folder | permalink | pumlid | categories | tags | ||||
---|---|---|---|---|---|---|---|---|---|---|
pattern | Data Transfer Object | data-transfer-object | /patterns/data-transfer-object/ | RSh14SCW30NHLk82GFTq8uDYum71I5zn-t41kUtCswrfwL4bhBzEOFcRoFZEHyCPUxXOcGfHv387jHutWuqk_dAguktGj1WGKwV1_WJLvqWmLl-8fRbVKa22yXTosCWhHly1 | Architectural |
|
Intent
Pass data with multiple attributes in one shot from client to server, to avoid multiple calls to remote server.
Applicability
Use the Data Transfer Object pattern when
- The client is asking for multiple information. And the information is related.
- When you want to boost the performance to get resources.
- You want reduced number of remote calls.