欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET 定時(shí)器回調(diào)方法的重入

 更新時(shí)間:2017年02月20日 09:32:26   作者:brainmao  
本文主要介紹了ASP.NET 定時(shí)器回調(diào)方法的重入的相關(guān)知識(shí)。具有很好的參考價(jià)值,下面跟著小編一起來看下吧

話不多說,請看代碼:

using System;
using System.Collections.Generic;
using System.Text;
namespace NET.MST.Sixth.Reenter
{
  class Reenter
  {
    //用來造成線程同步問題的靜態(tài)成員
    private static int TestInt1=0;
    private static int TestInt2 = 0;
    private static object locko = new object();
    static void Main(string[] args)
    {
      Console.WriteLine("System.Timers.Timer 回調(diào)方法重入測試:");
      TimersTimerReenter();
      //這里確保已經(jīng)開始的回調(diào)方法有機(jī)會(huì)結(jié)束
      System.Threading.Thread.Sleep(2 * 1000);
      Console.WriteLine("System.Threading.Timer 回調(diào)方法重入測試:");
      ThreadingTimerReenter();
      Console.Read();
    }
    /// <summary>
    /// 展示System.Timers.Timer的回調(diào)方法重入
    /// </summary>
    static void TimersTimerReenter()
    {
      System.Timers.Timer timer = new System.Timers.Timer();
      timer.Interval = 100;    //100毫秒
      timer.Elapsed += TimersTimerHandler;
      timer.Start();
      System.Threading.Thread.Sleep(2 * 1000); //運(yùn)行2秒
      timer.Stop();
    }
    /// <summary>
    /// 展示System.Threading.Timer的回調(diào)方法重入
    /// </summary>
    static void ThreadingTimerReenter()
    {
      //100毫秒
      using (System.Threading.Timer timer = new System.Threading.Timer
       (new System.Threading.TimerCallback(ThreadingTimerHandler), null, 0, 100))
      {
        System.Threading.Thread.Sleep(2 * 1000); //運(yùn)行2秒
      }
    }
    /// <summary>
    /// System.Timers.Timer的回調(diào)方法
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="args"></param>
    private static void TimersTimerHandler(object sender,EventArgs args)
    {
      lock (locko)
      {
        Console.WriteLine("測試整數(shù):" + TestInt1.ToString());
        //睡眠10秒,保證方法重入
        System.Threading.Thread.Sleep(300);
        TestInt1++;
        Console.WriteLine("自增1后測試整數(shù):" + TestInt1.ToString());
      }
    }
    /// <summary>
    /// System.Threading.Timer的回調(diào)方法
    /// </summary>
    /// <param name="state"></param>
    private static void ThreadingTimerHandler(object state)
    {
      lock (locko)
      {
        Console.WriteLine("測試整數(shù):" + TestInt2.ToString());
        //睡眠10秒,保證方法重入
        System.Threading.Thread.Sleep(300);
        TestInt2++;
        Console.WriteLine("自增1后測試整數(shù):" + TestInt2.ToString());
      }
    }
  }
}

以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持腳本之家!

相關(guān)文章

最新評論