Created
December 22, 2011 12:24
-
-
Save mookid8000/1510130 to your computer and use it in GitHub Desktop.
Rebus example configuration
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
var adapter = new MyContainerAdapter(favoriteContainer); | |
Configure.With(adapter) | |
.Transport(t => t.UseMsmq("some_input_queue")) | |
.Serialization(s => s.UseJsonSerializer()) | |
.Sagas(s => s.StoreInSqlServer(connectionstring, "saga_table", "saga_index_table")) | |
.Subscriptions(s => s.StoreInSqlServer(connectionstring, "subscriptions")) | |
.SpecifyOrderOfHandlers(h => h.First<SomeType>().Then<AnotherType>()) | |
.Logging(l => l.Log4Net()) | |
.DetermineEndpoints(d => d.FromRebusMappingsSection()) | |
.Discovery(d => | |
{ | |
d.Handlers.LoadFrom(Assembly.GetExecutingAssembly()); | |
}) | |
.CreateBus() | |
.Start(); //< returns the IBus, but it's in the container as well |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment