PreviousNext

Mediator Pattern C#

by bill-s, 2019-11-19T17:34:53.661Z

The Mediator pattern in C# enables objects to communicate, without knowing each other’s identities. It also encapsulates a protocol that objects can follow. You can think of a Mediator object as a kind of a coordinator; that handles traffic between appropriate parties based on its own logic. Mediator promotes loose coupling by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently.

Read More