From 1c2105dd6efb96e7d126f6311e273c7c30f9efdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Thu, 14 May 2015 23:30:05 +0300 Subject: [PATCH] Added real world example for Chain --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dd326fb11..d9bdd32cc 100644 --- a/README.md +++ b/README.md @@ -287,6 +287,7 @@ A programming idiom is a means of expressing a recurring construct in one or mor **Real world examples:** * [java.util.logging.Logger#log()](http://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html#log%28java.util.logging.Level,%20java.lang.String%29) +* [Apache Commons Chain](https://commons.apache.org/proper/commons-chain/index.html) ## Command [↑](#list-of-design-patterns) **Intent:** Encapsulate a request as an object, thereby letting you parameterize clients with different requests, queue or log requests, and support undoable operations.