zoukankan      html  css  js  c++  java
  • CallContext在多线程传递试验分析

    代码
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Runtime.Remoting.Messaging;
    using System.Threading;
    namespace ConsoleApplication2
    {
        
    class Program
        {
            
    static void Main(string[] args)
            {
                CallContext.SetData(
    "p1"new Person1 { Name = "xhan"});
                CallContext.SetData(
    "p2"new Person2 { Name = "xhan" });


                CallContext.LogicalSetData(
    "name"36);
                Action action 
    = PrintPerson;

                action.BeginInvoke(
    nullnull);

                PrintPerson();

                Console.Read();
            }
            
    public static void PrintPerson()
            {
                Console.WriteLine(
    "logicalData:" + CallContext.LogicalGetData("name"));
                Person1 p1 
    = CallContext.GetData("p1"as Person1;
                Person2 p2 
    = CallContext.GetData("p2"as Person2;
                
    if (p1 != null)
                {
                    Console.WriteLine(
    "thread Id:" + Thread.CurrentThread.ManagedThreadId + " p1.Name:" + p1.Name);

                }
                
    else
                {
                    Console.WriteLine(
    "thread Id:" + Thread.CurrentThread.ManagedThreadId + " p1.Name:null");
                }
                
    if (p2 != null)
                {
                    Console.WriteLine(
    "thread Id:" + Thread.CurrentThread.ManagedThreadId + " p2.Name:" + p2.Name);
                }
                
    else
                {
                    Console.WriteLine(
    "thread Id:" + Thread.CurrentThread.ManagedThreadId + " p2.Name:null");
                }
            }


        }
        
    public class Person1 
        {
            
    public string Name { getset; }
        }
        
    public class Person2 : ILogicalThreadAffinative 
        {
            
    public string Name { getset; }
        }
    }

    CallContext一般来说是绑定到特定线程的一个上下文数据存储,我们可以通过CallContext的静态方法GetData, SetData, and FreeNamedDataSlot,来管理线程内上下文数据。但是有些时候,我们需要将一个线程的上下文传递到另一个线程中。比如异步调用一个方法,或者显示创建新的线程。上面的例子说明了通过SetData方法设置的数据对象是不会自动传播上下文到新的线程中。如果要想传递上下文中的对象到新线程。通过SetData放到数据槽中的对象必须实行ILogicalThreadAffinative这个标记接口.另一个方法是通过LogicalSetData和LogicalGetData来放置上下文数据,这种方式放置的对象都会自动传递到新线程中.

    另外asp.net中的HttpContext.Current对象也是基于CallContext实现的,而且asp.net中HttpConext.Current不能自动的跨线程传递。http://www.cnblogs.com/whtydn/archive/2009/07/16/1524580.html

    参考:http://www.cnblogs.com/vwxyzh/archive/2009/02/21/1395416.html

    http://www.pin5i.com/showtopic-27165-2.html

  • 相关阅读:
    oralce数据库创建同义词
    Oracle数据库最小脚本
    oracle数据库SQL收集整理
    文件各种上传,离不开的表单
    Apache OFBiz 研究记录01
    无IDE时编译和运行Java
    解决VM虚拟机MAC OS X 10.10.x的卡顿问题
    在java项目中使用AES256 CBC加密
    Spring4 与 Hibernate4 整合过程中的问题记录
    WIZnet官方网盘
  • 原文地址:https://www.cnblogs.com/xhan/p/1774052.html
Copyright © 2011-2022 走看看