1
edit
Changes
no edit summary
----
==Applicability==
Here are a few situations when using the Chain of Responsibility is more effective:
* More than one object can handle a request
* The handler is not known in advance
* The handler should be determined automatically
* It’s wished that the request is addressed to a group of objects without explicitly specifying its receiver
* The group of objects that may handle the request must be specified in a dynamic way
----