#1113 Link uml-reverse-mapper created class diagrams to readme, where needed

This commit is contained in:
Ilkka Seppälä
2019-12-07 20:01:13 +02:00
parent 0685a505d3
commit b09b100614
161 changed files with 246 additions and 64 deletions

View File

@ -18,8 +18,6 @@ Transparently retry certain operations that involve communication with external
resources, particularly over the network, isolating calling code from the
retry implementation details.
![alt text](./etc/retry.png "Retry")
## Explanation
The `Retry` pattern consists retrying operations on remote resources over the
network a set number of times. It closely depends on both business and technical
@ -131,6 +129,9 @@ attempts were left.
[1] Please note that *Hystrix* is a complete implementation of the *Circuit
Breaker* pattern, of which the *Retry* pattern can be considered a subset of.
## Class diagram
![alt text](./etc/retry.png "Retry")
## Applicability
Whenever an application needs to communicate with an external resource,
particularly in a cloud environment, and if the business requirements allow it.