Created
August 10, 2012 15:56
-
-
Save mookid8000/3315202 to your computer and use it in GitHub Desktop.
Possible MSMQ subqueue thing for Rebus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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