Chain of Responsibility: Related Patterns
Composite
- When objects in a chain of responsibility are part of a larger structure, the larger structure is often built using the Composite pattern.
Command
- The Chain of Responsibility pattern makes the object that executes a command indefinite. The Command pattern makes the object that executes a command explicit and specific.