Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created December 22, 2011 12:24
Show Gist options
  • Save mookid8000/1510130 to your computer and use it in GitHub Desktop.
Save mookid8000/1510130 to your computer and use it in GitHub Desktop.
Rebus example configuration
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