MagicMessagebus 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package MagicMessagebus --version 1.0.6
NuGet\Install-Package MagicMessagebus -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MagicMessagebus" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MagicMessagebus --version 1.0.6
#r "nuget: MagicMessagebus, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MagicMessagebus as a Cake Addin
#addin nuget:?package=MagicMessagebus&version=1.0.6

// Install MagicMessagebus as a Cake Tool
#tool nuget:?package=MagicMessagebus&version=1.0.6

MagicMessagebus

Add publish/subscribe power to your .NET solution. Like magic.

The simplest example that could possibly work

(Ridiculously simple, but probably not the best solution for larger applications)

  1. Create a message

    public class HelloWorld : IMagicMessage
    {
        /* your stuff goes here */
    }
    
  2. Publish that message anywhere in your code

    var messagebus = new MagicMessagebus();
    messagebus.Publish(new HelloWorld());
    
  3. Subcribe to that message anywhere in your code (static though)

    public static void Subscribe(HelloWorld message)
    {
        /* anything you need done goes here */
    }
    
  4. 💰

The simplest example with Dependency Injection

(Using Ninject as the Dependency Injector. Others will follow)

  1. Bind the MagicMessagebus

    kernel.Bind<IMagicMessagebus>().To<MagicMessagebus>().InSingletonScope();
    
  2. Inject into your service

    private readonly IMagicMessagebus messagebus;
    
    public FooService(IMagicMessagebus messagebus)
    {
        this.messagebus = messagebus;
    }
    
  3. Publish your message

    this.messagebus.Publish(new HelloWorld());
    
  4. Subcribe to the message in any interface that's bound in Ninject

    void Subscribe(HelloWorld message);
    
  5. Implement that service

    public void Subscribe(HelloWorld message)
    {
        /* anything you need done goes here */
    }
    
  6. 💰💰

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.4 269 3/23/2023
1.1.3 221 3/13/2023
1.1.2 400 8/1/2022
1.1.1 417 4/8/2022
1.1.0 412 4/5/2022
1.0.10 419 4/1/2022
1.0.9 425 2/14/2022
1.0.8 414 2/8/2022
1.0.7 354 2/15/2021
1.0.6 306 1/30/2021
1.0.5 304 1/29/2021
1.0.4 304 1/29/2021
1.0.3 328 1/29/2021
1.0.2 330 1/29/2021
1.0.1 293 1/29/2021
1.0.0 292 1/29/2021