...

/

Chain of Responsibility: Introduction

Chain of Responsibility: Introduction

Get a brief introduction to the Chain of Responsibility design pattern.

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 ...