Chain of Responsibility: Introduction
Get a brief introduction to the Chain of Responsibility design pattern.
We'll cover the following...
The Chain of Responsibility design pattern allows us to apply multiple processing steps to action. Any process step can have a condition added to it, allowing it to exit the process immediately and not execute any further steps.
Perhaps the ...