Skip to content

MaratFattakhov/Rebus.Async

 
 

Repository files navigation

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


About

🚌 Experimental async extensions for Rebus

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 88.1%
  • Batchfile 11.9%