|
|
|
Chain of Responsibility : Design Pattern
|
In Object Oriented Design, the chain-of-responsibility pattern is a design pattern consisting of a source of command objects and a series of processing objects. Each processing object contains a set of logic that describes the types of command objects that it can handle, and how to pass off those that it cannot to the next processing object in the chain. A mechanism also exists for adding new processing objects to the end of this chain.
created by syam1224 on 2008-05-07 21:10:15
|
|
|
|
Chain-of-responsibility pattern from wikipedia

In a variation of the standard chain-of-responsibility model, some handlers may act as dispatchers, capable of sending commands out in a variety of directions, forming a tree of responsibility.
http://en.wikipedia.org/wiki/Chain-of-responsibili
created by syam1224 on 2008-05-07 21:14:57
|
|
Chain of Responsibility GoF Design Pattern

Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain until an object handles it.
http://www.dofactory.com/Patterns/PatternChain.asp
created by syam1224 on 2008-05-07 21:13:52
|
|
Chain of Responsibility from sourcemaking.com

Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain until an object handles it.
http://sourcemaking.com/design_patterns/chain_of_r
created by syam1224 on 2008-05-07 21:11:43
|
|
|