Is it possible to swap out the bus with something like masstransit? I've already got a service bus in my app so don't really want to introduce another one.
Ideally I'd be able to config it via the IoC but it sounds like the bus holds the IoC container?
As far as I know you can provide your own implementation of
IApplicationBus
Portable areas use the instance of
Bus
class that uses intrnally the provided instance forIApplicationBus
interface or the local default ofApplicationBus
class. It the following interface fits your need so you can easily do it.