Provides an experimental async extension to Rebus that allows for emulating synchronous request/reply in an asyncronous fashion.
Check this out:
var bus = Configure.With(_activator)
.(...)
.Options(o => o.EnableSynchronousRequestReply(replyMaxAgeSeconds: 7))
.(...);
// (...)
var reply = await _bus.SendRequest<SomeReply>(new SomeRequest());
// we have the reply here :)