在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
IoC容器的对象生存期管理 如果你一直在使用IoC容器,你可能已经使用过了一些对象生存期管理模型(Object Lifetime Management)。通过对对象生存期的管理,将使对象的复用成为可能。同时其使容器可以控制如何创建和管理对象实例。 Unity提供的对象生存期管理模型是通过从抽象类LifetimeManager的派生类来完成。Unity将为每个类型的注册创建生存期管理器。每当UnityContainer需要创建一个新的对象实例时,将首先检测该对象类型的生存期管理器,是否已有一个对象实例可用。如果没有对象实例可用,则UnityContainer将基于配置的信息构造该对象实例并将该对象交予对象生存期管理器。 LifetimeManager LifetimeManager是一个抽象类,其实现了ILifetimePolicy接口。该类被作为所有内置或自定义的生存期管理器的父类。它定义了3个方法: GetValue - 返回一个已经存储在生存期管理器中对象实例。 SetValue - 存储一个新对象实例到生存期管理器中。 RemoveValue - 从生存期管理器中将已存储的对象实例删除。UnityContainer的默认实现将不会调用此方法,但可在定制的容器扩展中调用。 Unity内置了6种生存期管理模型,其中有2种即负责对象实例的创建也负责对象实例的销毁(Disposing)。 •TransientLifetimeManager - 为每次请求生成新的类型对象实例。 (默认行为) 复制代码 代码如下: public interface IExample : IDisposable { void SayHello(); } public class Example : IExample public void SayHello() Console.WriteLine("{0} says hello in thread {1}!", _key, public void Dispose() TransientLifetimeManager TransientLifetimeManager是Unity默认的生存期管理器。其内部的实现都为空,这就意味着每次容器都会创建和返回一个新的对象实例,当然容器也不负责存储和销毁该对象实例。 复制代码 代码如下: private static void TestTransientLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new TransientLifetimeManager()); // each one gets its own instance Console.ReadKey(); ContainerControlledLifetimeManager ContainerControlledLifetimeManager将为UnityContainer及其子容器提供一个Singleton的注册类型对象实例。其只在第一次请求某注册类型时创建一个新的对象实例,该对象实例将被存储到生存期管理器中,并且一直被重用。当容器析构时,生存期管理器会调用RemoveValue将存储的对象销毁。 Singleton对象实例对应每个对象类型注册,如果同一对象类型注册多次,则将为每次注册创建单一的实例。 复制代码 代码如下: private static void TestContainerControlledLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new ContainerControlledLifetimeManager()); IUnityContainer firstSub = null; try // all containers share same instance // run one resolving in other thread and still receive same instance container.Resolve<IExample>().SayHello(); try Console.ReadKey(); HierarchicalLifetimeManager类衍生自ContainerControlledLifetimeManager,其继承了父类的所有行为。与父类的不同之处在于子容器中的生存期管理器行为。ContainerControlledLifetimeManager共享相同的对象实例,包括在子容器中。而HierarchicalLifetimeManager只在同一个容器内共享,每个子容器都有其单独的对象实例。 复制代码 代码如下: private static void TestHierarchicalLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new HierarchicalLifetimeManager()); IUnityContainer firstSub = null; try // each subcontainer has its own instance try Console.ReadKey(); ExternallyControlledLifetimeManager ExternallyControlledLifetimeManager中的对象实例的生存期限将有UnityContainer外部的实现控制。此生存期管理器内部直存储了所提供对象实例的一个WeakReference。所以如果UnityContainer容器外部实现中没有对该对象实例的强引用,则该对象实例将被GC回收。再次请求该对象类型实例时,将会创建新的对象实例。 复制代码 代码如下: private static void TestExternallyControlledLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new ExternallyControlledLifetimeManager()); // same instance is used in following // run garbate collector. Stored Example instance will be released // object stored targeted by WeakReference was released example.SayHello(); Console.ReadKey(); 这个结果证明强引用还存在,不知道为什么?如果你找到了原因,烦请告诉我,谢谢。 PerThreadLifetimeManager PerThreadLifetimeManager模型提供“每线程单实例”功能。所有的对象实例在内部被存储在ThreadStatic的集合。容器并不跟踪对象实例的创建并且也不负责Dipose。 复制代码 代码如下: private static void TestPerThreadLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new PerThreadLifetimeManager()); Action<int> action = delegate(int sleep) Thread thread1 = new Thread((a) => action.Invoke((int)a)); thread1.Join(); example = container.Resolve<IExample>(); example.SayHello(); Console.ReadKey(); PerResolveLifetimeManager PerResolveLifetimeManager是Unity内置的一个特殊的模型。因为Unity使用单独的逻辑来处理注册类型的Per-Resolve生命期。每次请求Resolve一个类型对象时,UnityContainer都会创建并返回一个新的对象实例。 复制代码 代码如下: private static void TestPerResolveLifetimeManager() { IExample example; using (IUnityContainer container = new UnityContainer()) { container.RegisterType(typeof(IExample), typeof(Example), new PerResolveLifetimeManager()); container.Resolve<IExample>().SayHello(); example = container.Resolve<IExample>(); example.SayHello(); Console.ReadKey(); |
请发表评论