您好,登錄后才能下訂單哦!
小編給大家分享一下ASP.NET如何實現定時器回調方法的重入,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
代碼:
using System; using System.Collections.Generic; using System.Text; namespace NET.MST.Sixth.Reenter { class Reenter { //用來造成線程同步問題的靜態成員 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 回調方法重入測試:"); TimersTimerReenter(); //這里確保已經開始的回調方法有機會結束 System.Threading.Thread.Sleep(2 * 1000); Console.WriteLine("System.Threading.Timer 回調方法重入測試:"); ThreadingTimerReenter(); Console.Read(); } /// <summary> /// 展示System.Timers.Timer的回調方法重入 /// </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); //運行2秒 timer.Stop(); } /// <summary> /// 展示System.Threading.Timer的回調方法重入 /// </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); //運行2秒 } } /// <summary> /// System.Timers.Timer的回調方法 /// </summary> /// <param name="sender"></param> /// <param name="args"></param> private static void TimersTimerHandler(object sender,EventArgs args) { lock (locko) { Console.WriteLine("測試整數:" + TestInt1.ToString()); //睡眠10秒,保證方法重入 System.Threading.Thread.Sleep(300); TestInt1++; Console.WriteLine("自增1后測試整數:" + TestInt1.ToString()); } } /// <summary> /// System.Threading.Timer的回調方法 /// </summary> /// <param name="state"></param> private static void ThreadingTimerHandler(object state) { lock (locko) { Console.WriteLine("測試整數:" + TestInt2.ToString()); //睡眠10秒,保證方法重入 System.Threading.Thread.Sleep(300); TestInt2++; Console.WriteLine("自增1后測試整數:" + TestInt2.ToString()); } } } }
以上是“ASP.NET如何實現定時器回調方法的重入”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。