主页 > 知识库 > 基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题

基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题

热门标签:怎样在地图标注消火栓图形 泰州手机外呼系统软件 厦门四川外呼系统 山东防封电销卡办理套餐 百度地图标注点击事件 济源人工智能电话机器人价格 杭州智能电话机器人 内蒙古智能电销机器人哪家强 地图标注位置多的钱

PerThreadLifetimeManager的问题
使用Unity内置的PerThreadLifetimeManager生存期模型时,其基于ThreadStatic的TLS(Thread Local Storage)设计,也就是说对于每个托管的ManagedThreadId,其会缓存已生成的对象实例。

由于CLR维护了托管线程池,使用过的线程并不会立即销毁,在需要的时候会继续复用。在类似ASP.NET PerCall或WCF PerCall条件下,当Call1在线程ManagedThreadId1中处理完毕后,Call2发生,而Call2很有可能也在线程ManagedThreadId1中处理。这种条件下Call2会自动复用处理Call1时生成并缓存的对象实例。

如果我们希望每次调用(PerCall)都生成专用的对象实例,则PerThreadLifetimeManager在此种场景下不适合。

解决办法有两种:

1.继续使用PerThreadLifetimeManager模型,不适用ThreadPool,而手动创建和销毁线程。
2.自定义对象生存期模型
PerCallContextLifeTimeManager

复制代码 代码如下:

public class PerCallContextLifeTimeManager : LifetimeManager
    {
      private string _key =
        string.Format(CultureInfo.InvariantCulture,
        "PerCallContextLifeTimeManager_{0}", Guid.NewGuid());

      public override object GetValue()
      {
        return CallContext.GetData(_key);
      }

      public override void SetValue(object newValue)
      {
        CallContext.SetData(_key, newValue);
      }

      public override void RemoveValue()
      {
        CallContext.FreeNamedDataSlot(_key);
      }
    }


使用举例
复制代码 代码如下:

private static void TestPerCallContextLifeTimeManager()
    {
      IExample example;
      using (IUnityContainer container = new UnityContainer())
      {
        container.RegisterType(typeof(IExample), typeof(Example),
          new PerCallContextLifeTimeManager());

        container.ResolveIExample>().SayHello();
        container.ResolveIExample>().SayHello();

        Actionint> action = delegate(int sleep)
        {
          container.ResolveIExample>().SayHello();
          Thread.Sleep(sleep);
          container.ResolveIExample>().SayHello();
        };

        Thread thread1 = new Thread((a) => action.Invoke((int)a));
        Thread thread2 = new Thread((a) => action.Invoke((int)a));
        thread1.Start(50);
        thread2.Start(55);
        thread1.Join();
        thread2.Join();

        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 50);
        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 55);
        Thread.Sleep(100);

        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 50);
        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 55);
        Thread.Sleep(100);

        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 50);
        ThreadPool.QueueUserWorkItem((a) => action.Invoke((int)a), 55);
        Thread.Sleep(100);

        example = container.ResolveIExample>();
      }

      example.SayHello();

      Console.ReadKey();
    }

您可能感兴趣的文章:
  • 解决unity3d导入模型贴图材质丢失的问题
  • Unity使用EzySlice实现模型多边形顺序切割
  • Unity实现鼠标或者手指点击模型播放动画
  • Unity UI拖拽模型选择功能
  • Unity3D实现模型淡入淡出效果
  • Unity3D网格功能生成球体网格模型
  • Unity实现模型点击事件的方法

标签:新乡 喀什 百色 朔州 台州 周口 朝阳 洛阳

巨人网络通讯声明:本文标题《基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题》,本文关键词  基于,自定义,Unity,生,存期,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题》相关的同类信息!
  • 本页收集关于基于自定义Unity生存期模型PerCallContextLifeTimeManager的问题的相关信息资讯供网民参考!
  • 推荐文章