c#定时器和global实现自动job示例

时间:2023-10-04 22:30:29 

一、创建一个cs文件,定义Time 对象


 public class WebTimer_AutoRepayment
{
    static WebTimer_AutoRepayment()
    {
        _WebTimerTask = new WebTimer_AutoRepayment();
    }
    /// <summary>
    /// 实例化
    /// </summary>
    /// <returns></returns>
    public static WebTimer_AutoRepayment Instance()
    {
        return _WebTimerTask;
    }

    /// <summary>
    /// 实际执行的方法
    /// </summary>
    private void ExecuteMain()
    {
        //定义你自己要执行的Job
        ChinaPnrInterfaces.AutoSendRepaymentNotice();//定时发送短信提醒的方法
    }
    #region Timer 计时器定义
    /// <summary>
    /// 调用 callback 的时间间隔(以毫秒为单位)。指定 Timeout.Infinite 可以禁用定期终止。
    /// </summary>
    private static int Period = 1 * 60 * 60 * 1000;
    /// <summary>
    /// 调用 callback 之前延迟的时间量(以毫秒为单位)。指定 Timeout.Infinite 以防止计时器开始计时。指定零 (0) 以立即启动计时器。
    /// </summary>
    private static int dueTime = 3 * 1000;//三分钟后启动
    /// <summary>
    ///第几次执行
    /// </summary>
    private long Times = 0;
    /// <summary>
    /// 实例化一个对象
    /// </summary>
    private static readonly WebTimer_AutoRepayment _WebTimerTask = null;
    private Timer WebTimerObj = null;
    /// <summary>
    /// 是否正在执行中
    /// </summary>
    private int _IsRunning;
    /// <summary>
    /// 开始
    /// </summary>
    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);
        }
    }
    /// <summary>
    /// WebTimer的主函数
    /// </summary>
    /// <param name="sender"></param>
    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);
        }
    }
    /// <summary>
    /// 停止
    /// </summary>
    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();//
    }

标签:c#,定时器,global,job
0
投稿

猜你喜欢

  • 使用ehcache三步搞定springboot缓存的方法示例

    2021-06-25 04:44:12
  • Java基础学习之关键字和变量数据类型的那些事

    2023-09-17 04:31:24
  • Base64编码解码原理及C#编程实例

    2022-05-07 03:58:53
  • 关于C++数组中重复的数字

    2023-01-21 03:29:43
  • 关于cron表达式每天整点执行一次的问题

    2023-06-24 13:51:27
  • java操作elasticsearch的案例解析

    2021-06-27 19:17:13
  • Java Floyd算法求有权图(非负权)的最短路径并打印

    2023-04-10 12:53:42
  • 使用OpenGL绘制Bezier曲线

    2023-03-14 19:55:39
  • Android实现发送短信验证码倒计时功能示例

    2023-04-03 09:07:48
  • 解析Android框架之OkHttp3源码

    2022-12-05 16:28:02
  • C#使用oledb操作excel文件的方法

    2023-06-13 19:19:42
  • java版十大排序经典算法:完整代码(3)

    2021-07-17 05:09:09
  • Swing常用组件之多行文本区JTextArea

    2023-11-08 14:16:49
  • java的main方法中调用spring的service方式

    2023-03-29 00:12:16
  • C#的通用DbHelper类(支持数据连接池)示例详解

    2022-01-14 11:59:56
  • listView的item中有checkbox,导致setOnItemClick失效的原因及解决办法

    2022-09-04 10:57:12
  • maven install报错中程序包xxx不存在的问题解决

    2023-03-05 03:06:51
  • Mybatis返回int或者Integer类型报错的解决办法

    2023-08-09 02:41:14
  • 最详细的文件上传下载实例详解(推荐)

    2021-12-12 08:18:13
  • SpringBoot嵌入式Servlet容器与定制化组件超详细讲解

    2023-03-31 09:07:05
  • asp之家 软件编程 m.aspxhome.com