Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created August 10, 2012 15:56
Show Gist options
  • Save mookid8000/3315202 to your computer and use it in GitHub Desktop.
Save mookid8000/3315202 to your computer and use it in GitHub Desktop.
Possible MSMQ subqueue thing for Rebus
Configure.With(adapter)
.Transport(t => t.UseMsmqWithSubqueues())
.CreateBus().Start();
//...
<!-- old style: -->
<!-- <rebus inputQueue="someExplicitlyStatedInputQueue" errorQueue="someExplicitlyStatedErrorQueue"> -->
<!-- subq style ('input' and 'error' automagically created beneath this name): -->
<rebus inputQueue="someService">
while would result in the following in MSMQ:
-> someService
-> input
-> error
or something like that....?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment