StructureMap singleton

吃可爱长大的小学妹 提交于 2019-12-22 09:29:27

问题


Are these two equivalent?

1) var store = new DocumentStore();

        For<IDocumentStore>().Use(store);

2) var store = new DocumentStore();

        For<IDocumentStore>().Singleton().Use(store);

or

        For< IDocumentStore>().AlwaysUnique().Use(store);

Will both of these return singleton instance of documentstore with no duplicate instances?


回答1:


You will always get singleton behavior when you provide an instance instead of just a type.




回答2:


AlwaysUnique() does the opposite and always creates a unique(new) instance, kind of opposite to singelton. See this stackoverflow post to see how to share singeltons between two interfaces.

Singelton() creates the singelton. It is a Singelton for this container for this interface, in your example IDocumentStore. (edit): it is actually a singelton for transiently created objects for this container. Please google that term together with structure map . Generally these are the objects that are created automatically and injected into classes, but I have not seen an exact definition of this.



来源:https://stackoverflow.com/questions/6783137/structuremap-singleton

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!