What is the purpose of the Chain of Responsibility pattern?
- To create complex objects step by step, using a builder object to abstract the process of creating the object
- To provide a common interface for a group of related classes
- To provide a simplified interface to a complex system, hiding the complexity of the system behind a single interface
- To provide a way to pass requests along a dynamic chain of receivers until one of them handles the request
The Chain of Responsibility pattern provides a way to pass requests along a dynamic chain of receivers until one of them handles the request
Loading...
Related Quiz
- What is relationship between Repository and Unit of Work?
- What is the difference between the Visitor and Iterator patterns?
- What is the difference between the Template patterns and the Strategy pattern?
- What is the difference between the Service Locator and Dependency Injection patterns?
- Can we use CQRS without Event Sourcing?