This is a space that holds a collection of my personal work and ideas
Behavioral Patterns - Chain of Responsibility Pattern Exercise
Posted on 05/18/2018
The Chain of Responsibility Pattern is very useful to avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along with the chain until an object handles it. We will implement a naïve security filter chain using this pattern in our practice exercise. You will certainly enjoy this exercise as it is a great way to get you totally master this pattern.