Chain Of Responsibility Pattern
The Chain of Responsibility Pattern is a behavioral design pattern that passes a request along a chain of handler objects, each of which decides either to process the request or pass it to the next handler in the chain, decoupling the sender of a request from the object(s) that ultimately handle it.
2 resources across 2 libraries