What is Mediator pattern?
- A design pattern that allows the client to traverse a collection of objects, without exposing the underlying representation of the collection
- A design pattern that converts a request into a standalone object, allowing the client to parametrize objects with different requests, queue a request, or log requests
- A design pattern that provides a simplified interface to a complex system, allowing the client to interact with the system through a single, unified interface
- A design pattern that uses a central authority to manage communication between components, reducing the coupling between components and allowing for more flexible and modular system design
Mediator pattern is a design pattern that uses a central authority to manage communication between components, reducing the coupling between components and allowing for more flexible and modular system design. In the Mediator pattern, the Mediator class acts as a centralized authority that manages communication between different components, and ensures that the components are decoupled from one another. This pattern can be useful in situations where you want to reduce the coupling between components, and promote a more flexible and modular system design.
Loading...