MicroBus: In-Process Mediator
I’ve blogged about the mediator pattern a lot. Primarily because it’s been a good fit in several of the applications I’ve developed over the last few years. Mediator Pattern For those completely unfamiliar with the mediator pattern, here’s a brief summary: With the mediator pattern, communication between objects is encapsulated with a mediator object. Objects no longer communicate directly with each other, but instead communicate through the mediator. This reduces the dependencies between communicating objects, thereby lowering the coupling. Libraries I’ve written my own implementations of the mediator library from project to project. Once I finally found the MediatR library, I’ve pretty… Read More »MicroBus: In-Process Mediator