Skip to content

Releases: JoepGeevers/MagicMessagebus

v1.1.0

Choose a tag to compare

@JoepGeevers JoepGeevers released this 06 Apr 07:06

MagicMessagebus now accepts an IAssemblyFilter so you can decide what assemblies to scan for subscriptions, and which to skip. This can help speeding up the initial scan, and skip assemblies that happen to be broken in your application.

If omitted, MagicMessagebus will use a DefaultAssemblyFilter that filters out common assemblies like System, Microsoft and others.

Track when subscribers fail

Choose a tag to compare

@JoepGeevers JoepGeevers released this 15 Feb 19:32

If a subcriber explodes, it will be caught and either rethrown or sent to an IErrorTracker depending on if the latter exists in the used dependency injection container
Subscribe methods can also return an HttpStatusCode. If not successfull, an exception will also be thrown or sent to the IErrorTracker