C# 超时工具类 第二版
2018-06-22 06:43:09来源:未知 阅读 ()
附源码,没有附测试demo
之前的工具类:C# 给某个方法设定执行超时时间
/// <summary> /// 超时工具 /// </summary> public class TimeoutTools : IDisposable { private System.Windows.Forms.Timer timer; /// <summary> /// 位置 /// </summary> public uint Position { get; private set; } /// <summary> /// 超时事件 /// </summary> public event EventHandler TimeoutEvent; /// <summary> /// Tick事件 /// </summary> public event EventHandler TickEvent; /// <summary> /// 步长值 /// <para>默认值1</para> /// </summary> public uint StepLength { get; set; } /// <summary> /// 超时长度 /// <para>默认180</para> /// </summary> public uint TimeoutLength { get; set; } /// <summary> /// 默认构造函数 /// </summary> public TimeoutTools(System.ComponentModel.IContainer container) { this.StepLength = 1; this.TimeoutLength = 180; this.timer = new System.Windows.Forms.Timer(container); this.timer.Interval = 1000; this.timer.Enabled = false; timer.Tick += (sender, e) => { this.Position += this.StepLength; if (this.Position >= this.TimeoutLength) { this.Reset(); this.OnTimeOut(); } else { if (this.TickEvent != null) { this.TickEvent(this, EventArgs.Empty); } } }; } ///<summary> /// 指定超时时间 执行某个方法 ///</summary> ///<returns>执行 是否超时</returns> public static bool DoAction(TimeSpan timeSpan, Action action) { if (action == null) throw new ArgumentNullException("action is null"); bool timeout = true; try { // 异步调用Action IAsyncResult result = action.BeginInvoke(null, null); // Wait if (result.AsyncWaitHandle.WaitOne(timeSpan, false)) { timeout = false; } if (!timeout) { action.EndInvoke(result); } } catch (Exception) { timeout = true; } return timeout; } /// <summary> /// 设置计时器参数 /// </summary> /// <param name="period">毫秒</param> public void SetInterval(int period) { if (period == Timeout.Infinite) { this.timer.Enabled = false; return; } this.timer.Interval = period; this.timer.Enabled = true; } /// <summary> /// 接收到信号 /// </summary> public void Reset() { this.Position = 0; } protected void OnTimeOut() { if (this.TimeoutEvent != null) { this.TimeoutEvent(this, EventArgs.Empty); } } public void Dispose() { if (this.timer == null) return; this.timer.Enabled = false; this.timer.Dispose(); } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- ASP.NET页面请求超时时间设置多种方法 2019-11-19
- ASP.NET 程序员都非常有用的85个工具 2019-11-15
- 【转载】Asp.Net生成图片验证码工具类 2019-07-23
- ASP.NET MVC5 高级编程-学习日记-第二章 控制器 2018-12-14
- 第二节:框架前期准备篇之AutoFac常见用法总结 2018-08-21
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash