Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created May 29, 2012 19:55
Show Gist options
  • Save mookid8000/2830338 to your computer and use it in GitHub Desktop.
Save mookid8000/2830338 to your computer and use it in GitHub Desktop.
StructureMap Rebus registry THAT DOES NOT WORK
public class SomeRegistry : StructureMap.Configuration.DSL.Registry
{
public SomeRegistry()
{
For<ISomething>().Singleton().Use<SomeImplementation>();
For<IDit>().Singletong().Use<Dat>();
// osv....
// og så:
Rebus.Configure.With(new StructureMapContainerAdapter(ObjectFactory.Container))
.Logging(l => l.Log4Net())
.Transport(t => t.UseMsmqAndGetInputQueueNameFromAppConfig())
.Serialization(s => s.UseJsonSerializer())
.DetermineEndpoints(d => d.FromRebusConfigurationSection())
.CreateBus()
.Start();
// ObjectFactory.WhatDoIHave() giver mig IBus her
}
}
//....
ObjectFactory.Initialize(i => i.AddRegistry<SomeRegistry>());
// ObjectFactory.WhatDoIHave() giver mig IKKE IBus her
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment