結合Global和C#中的定時器實現自動Job(一)

CodeAgriculture發表於2014-01-14

一、建立一個cs檔案,定義Time 物件
public class WebTimer_AutoRepayment
{
    static WebTimer_AutoRepayment()
    {
        _WebTimerTask = new WebTimer_AutoRepayment();
    }

    ///


    /// 例項化
    ///

    ///
    public static WebTimer_AutoRepayment Instance()
    {
        return _WebTimerTask;
    }


    ///


    /// 實際執行的方法
    ///

    private void ExecuteMain()
    {
        //定義你自己要執行的Job
        ChinaPnrInterfaces.AutoSendRepaymentNotice();//定時傳送簡訊提醒的方法

    }

    #region Timer 計時器定義
    ///


    /// 呼叫 callback 的時間間隔(以毫秒為單位)。指定 Timeout.Infinite 可以禁用定期終止。
    ///

    private static int Period = 1 * 60 * 60 * 1000;

    ///


    /// 呼叫 callback 之前延遲的時間量(以毫秒為單位)。指定 Timeout.Infinite 以防止計時器開始計時。指定零 (0) 以立即啟動計時器。
    ///

    private static int dueTime = 3 * 1000;//三分鐘後啟動

    ///


    ///第幾次執行
    ///

    private long Times = 0;
    ///
    /// 例項化一個物件
    ///

    private static readonly WebTimer_AutoRepayment _WebTimerTask = null;

    private Timer WebTimerObj = null;
    ///


    /// 是否正在執行中
    ///

    private int _IsRunning;

    ///


    /// 開始
    ///

    public void Start()
    {
        if (WebTimerObj == null)
        {
            DateTime now = DateTime.Now;

            int minutes = now.Minute;
            if (minutes >= 55)
            {
                dueTime = 0;//立即啟動
            }
            else
            {
                dueTime = (55 - minutes) * 60 * 1000;//到某個時間點的55分鐘啟動
            }

            WebTimerObj = new Timer(new TimerCallback(WebTimer_Callback), null, dueTime, Period);
        }
    }

    ///


    /// WebTimer的主函式
    ///

    ///
    private void WebTimer_Callback(object sender)
    {
        try
        {
            if (Interlocked.Exchange(ref _IsRunning, 1) == 0)
            {
                ExecuteMain();
                Times++;
                Times = (Times % 100000);
            }
        }
        catch
        {

        }
        finally
        {
            Interlocked.Exchange(ref _IsRunning, 0);
        }
    }

    ///


    /// 停止
    ///

    public void Stop()
    {
        if (WebTimerObj != null)
        {
            WebTimerObj.Dispose();
            WebTimerObj = null;
        }
    }
    #endregion
}
二、在Global檔案中呼叫所定義的方法

 void Application_Start(object sender, EventArgs e)
    {
        //在應用程式啟動時執行的程式碼

        WebTimer_AutoRepayment.Instance().Start(); //
    }
   
    void Application_End(object sender, EventArgs e)
    {
        //在應用程式關閉時執行的程式碼

        WebTimer_AutoRepayment.Instance().Stop();//
    }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28699126/viewspace-1070601/,如需轉載,請註明出處,否則將追究法律責任。

相關文章