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/
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Integration
|
|
|
|
tags: Java
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
**Intent:** Tolerant Reader is an integration pattern that helps creating
|
|
|
|
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.
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
**Applicability:** Use the Tolerant Reader pattern when
|
|
|
|
|
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
|
|
|
|
|
|
|
**Credits:**
|
|
|
|
|
|
|
|
* [Martin Fowler - Tolerant Reader](http://martinfowler.com/bliki/TolerantReader.html)
|