All Projects â†’ rebus-org â†’ Rebus.Async

rebus-org / Rebus.Async

Licence: other
🚌 Experimental async extensions for Rebus

Programming Languages

C#
18002 projects
Batchfile
5799 projects

Rebus.Async

install from nuget

Provides an experimental async extension to Rebus that allows for emulating synchronous request/reply in an asynchronous fashion.

Check this out:

var bus = Configure.With(_activator)
	.(...)
	.Options(o => o.EnableSynchronousRequestReply())
	.(...);


// (...)


var reply = await _bus.SendRequest<SomeReply>(new SomeRequest(), timeout: TimeSpan.FromSeconds(7));

// we have the reply here :)


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].