mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 14:58:39 +00:00
01e3d9dc4b
* fix typos * fix typo * fix typo * fix typos * fix typo
title, category, language, tag
| title | category | language | tag | |
|---|---|---|---|---|
| Partial Response | Behavioral | en |
|
Intent
Send partial response from server to client on need basis. Client will specify the fields that it needs to server, instead of serving all details for resource.
Class diagram
Applicability
Use the Partial Response pattern when
- Client needs only subset of data from resource.
- To avoid too much data transfer over wire
