2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Tolerant Reader
|
|
|
|
folder: tolerant-reader
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/tolerant-reader/
|
2016-08-30 15:10:34 +02:00
|
|
|
pumlid: NSZ14SCm20NHLf829ExfXaYChGn26lZ4xSVdtFRjSrZJx9AkZnFOyI9olkenSEOxGxmjWnXgMvE6viLWfmz_kNI9SLZP38XRqEIuWx1Kd0t5XVjjGVj_DNtMdLD_
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Integration
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
|
|
|
- Java
|
|
|
|
- Difficulty-Beginner
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Intent
|
|
|
|
Tolerant Reader is an integration pattern that helps creating
|
2015-08-13 23:54:40 +02:00
|
|
|
robust communication systems. The idea is to be as tolerant as possible when
|
|
|
|
reading data from another service. This way, when the communication schema
|
|
|
|
changes, the readers must not break.
|
|
|
|
|
|
|
|

|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Applicability
|
|
|
|
Use the Tolerant Reader pattern when
|
2015-08-13 23:54:40 +02:00
|
|
|
|
2015-08-15 18:03:05 +02:00
|
|
|
* the communication schema can evolve and change and yet the receiving side should not break
|
2015-09-03 18:17:07 +05:30
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Credits
|
2015-09-03 18:17:07 +05:30
|
|
|
|
|
|
|
* [Martin Fowler - Tolerant Reader](http://martinfowler.com/bliki/TolerantReader.html)
|