Skip to content

A Mediator for your .NET Apps with some of the most awesome middleware around

License

Notifications You must be signed in to change notification settings

shinyorg/mediator

Repository files navigation

Shiny Mediator

Mediator is a behavioral design pattern that lets you reduce chaotic dependencies between objects. The pattern restricts direct communications between the objects and forces them to collaborate only via a mediator object.

Shiny Mediator is a mediator pattern implementation, works for server, but also works great for apps. Apps have pages with lifecycles that don't necessarily participate in the standard dependency injection lifecycle. .NET MAUI generally tends to favor the Messenger pattern. We hate this pattern for many reasons which we won't get into. That being said, we do offer a messenger subscription in our Mediator for where interfaces and dependency injection can't reach.

This project is heavily inspired by MediatR with some lesser features that we feel were aimed more at server scenarios, while also adding some features we feel benefit apps

Links

Features

  • A Mediator for your .NET Apps (ASP.NET, Blazor, MAUI, basically anywhere in .NET)
  • Request/Response "Command" Handling
  • Event Publication
  • Request & event middleware with some great "out of the box" scenarios for your app
  • Think of "weak" message subscriptions without the fuss or mess to cleanup
  • Our MAUI & Blazor integrations allow your viewmodels or pages to implement an IEventHandler interface(s) without them having to participate in the dependency injection provider
  • We still have a "messagingcenter" type subscribe off IMediator for cases where you can't have your current type implement an interface
  • Instead of Assembly Scanning, we have source generators to automatically wireup the necessary registrations for you! (WIP)
  • Lightweight, No external dependencies, tiny bit of reflection
  • Help remove service overrun and reduce your constructor fat
  • Easy to Unit Test
  • Direct Handler to ASP.NET Core endpoint
  • Epic Out-of-the-Box Middleware
    • Offline Caching
    • Validation with Data Annotations or FluentValidation
    • Caching
    • Resiliency
    • User Exception Handling notifications
    • Exception Handling logging
    • Performance Time Logging
    • Main Thread Dispatching
    • Replayable Streams
    • Refresh Timer Streams
    • Registration straight from startup to mediator (we do the minimal api reg for you)

Works With

  • .NET MAUI - all platforms
  • MVVM Frameworks like Prism, ReactiveUI, & .NET MAUI Shell
  • Blazor - Work In Progress
  • Any other .NET platform - but you'll have to come up with your own "event collector" for the out-of-state stuff

About

A Mediator for your .NET Apps with some of the most awesome middleware around

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Languages