Chain Of Responsibility
Term side of the Card
Topic: Behavioral Patterns
Unit title: Chain Of Responsibility
Categories: Design pattern
Explanation side of the Card
Explanation: The design pattern that lets multiple objects handle a request without the sender needing to know which object will ultimately process it. Handlers are linked together to form a chain and each handler processes or passes the request along.