Files
java-design-patterns/partial-response
omahs 01e3d9dc4b fix: Fix typos (#2834)
* fix typos

* fix typo

* fix typo

* fix typos

* fix typo
2024-03-23 12:39:30 +02:00
..
2019-12-07 18:03:49 +02:00
2023-10-14 18:59:21 +03:00
2024-03-23 12:39:30 +02:00

title, category, language, tag
title category language tag
Partial Response Behavioral en
Decoupling

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

alt text

Applicability

Use the Partial Response pattern when

  • Client needs only subset of data from resource.
  • To avoid too much data transfer over wire

Credits