The next stop on our voyage through the Design Patterns galaxy takes us to the Chain of Responsibility design pattern, another of the design patterns found in the GoF catalog. We will find this design pattern useful when we need to perform specific processing but want to avoid tight coupling between the requester and the servicer.
The Chain of Responsibility design pattern shares some characteristics with the Decorator design pattern explored in the previous chapter. Both of these design patterns rely on an object composed with another object of ...