Created
May 29, 2012 19:55
-
-
Save mookid8000/2830338 to your computer and use it in GitHub Desktop.
StructureMap Rebus registry THAT DOES NOT WORK
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
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