Skip to content

tewarid/dotnet-dispatcher

Repository files navigation

Simple in-process asynchronous message dispatcher

Dispatch a message thus

MessageDispatcher<string, string>.Dispatch("foo", "bar");

Register a handler to receive a message thus

// Register a handler for "foo" that accepts messages of type string
MessageDispatcher<string, string>.RegisterHandler("foo", delegate (string message)
{
    // ...
});

About

Asynchronous message dispatcher for C# .NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages