GoF Design Patterns – Chain of Responsibility Design Pattern

The Chain of Responsibility Design Pattern is a behavioral pattern that allows you to chain together a series of objects to handle a request in a flexible and extensible way. This pattern is useful when you have a series of objects that can handle a request but don’t know which one is capable of handling it. … Continue readingGoF Design Patterns – Chain of Responsibility Design Pattern