给System.Timer类的Elapsed事件加锁
背景:
最近在做一个项目,程序是命令行程序,在主程序中开一个线程,这个线程用到了System.Timer类的Elapsed事件,根据指定时间间隔循环去查询数据库,找符合条件的记录,把记录组织成xml对象发送到MSMQ中去。刚一开始的时候数据量小,在时间间隔内可以查询所有的记录并发送到MSMQ,随着业务量大增大,在时间间隔内会多次执行查询数据库发送MSMQ,这样就会产生重复的数据发送到MSMQ了。所以本次在System.Timer类的Elapsed事件中加锁,使上次任务执行完之前,后面的任务无法执行。
程序代码:
public class ThreadSendMQ { public void Work(object th) { string str = "消息队列发送模式:多线程发送模式。"; Console.WriteLine(str); System.Timers.Timer t = new System.Timers.Timer(); t.Elapsed += new System.Timers.ElapsedEventHandler(t_Elapsed); t.Interval = 1000 * Convert.ToInt16(ConfigManager.SleepTime); t.Enabled = true; } void t_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { //加锁检查数据库和发送MSMQ lock (this) { send(); } } private void send() { string str = "线程正在发送消息队列"; //线程查询数据库并发送到MSMQ中去。 //Console.Write(str); //LogManager.WriteFilerLog(ConfigManager.LogPath, str); } } /////// 主程序 ////////////// class Program { static void Main(string[] args) { ThreadSendMQ thSend = new ThreadSendMQ(); System.Threading.ParameterizedThreadStart thrParm = new System.Threading.ParameterizedThreadStart(thSend.Work); System.Threading.Thread thread = new System.Threading.Thread(thrParm); thread.Start(System.Threading.Thread.CurrentThread); } }
经过上面的锁,就可以防止任务的多次执行,当前项目的bug完美解决。
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/4138447.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2014-12-02 20:55 jack_Meng 阅读(8105) 评论(0) 编辑 收藏 举报