Mediator Pattern
The Mediator Pattern is a behavioral design pattern that centralizes communication between a set of interacting objects into a single mediator object, so those objects no longer reference each other directly and instead only talk to the mediator.
5 resources across 3 libraries
Glossary Terms(3)
Mediator Pattern
The Mediator Pattern is a behavioral design pattern that centralizes communication between a set of interacting objects into a single mediator object, so those…
Facade Pattern
The Facade Pattern is a structural design pattern that provides a single, simplified interface to a larger, more complex subsystem of classes, making that subs…
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 proc…