Chain of Responsibility Pattern vs Command Pattern
- Handlers in the Chain of Responsibility Pattern can be implemented as Commands. In this case, you can execute a lot of different handler-command-operations over the same request-context object
- Requests in the Chain of Responsibility Pattern can be implemented as Commands. In this case, you can execute the same request-command-operation through a series of different handler-contexts