forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iluwatar#631 - Partial Response : Add Readme.
- Loading branch information
Gopinath Langote
committed
Sep 14, 2017
1 parent
fb3a998
commit 91048a4
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: pattern | ||
title: Partial Response | ||
folder: partial-response | ||
permalink: /patterns/partial-response/ | ||
categories: Architectural | ||
tags: | ||
- Java | ||
- KISS | ||
- YAGNI | ||
- Difficulty-Beginner | ||
--- | ||
|
||
## Intent | ||
Send partial response from server to client on need basis. Client will specify the the fields | ||
that it need to server, instead of serving all details for resource. | ||
|
||
 | ||
|
||
## Applicability | ||
Use the Partial Response pattern when | ||
|
||
* Client need only subset of data from resource. | ||
* To avoid too much data transfer over wire | ||
|
||
## Credits | ||
|
||
* [Common Design Patterns](https://cloud.google.com/apis/design/design_patterns) | ||
* [Partial Response in RESTful API Design](http://yaoganglian.com/2013/07/01/partial-response/) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.