Skip to content

Latest commit

 

History

History
28 lines (13 loc) · 655 Bytes

README.md

File metadata and controls

28 lines (13 loc) · 655 Bytes

Rebus.Async

install from nuget

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 :)