博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 超时工具类 第二版
阅读量:6822 次
发布时间:2019-06-26

本文共 3168 字,大约阅读时间需要 10 分钟。

附源码,没有附测试demo

 

之前的工具类:

 

///     /// 超时工具    ///     public class TimeoutTools : IDisposable    {        private System.Windows.Forms.Timer timer;        ///         /// 位置        ///         public uint Position { get; private set; }        ///         /// 超时事件        ///         public event EventHandler TimeoutEvent;        ///         /// Tick事件        ///         public event EventHandler TickEvent;        ///         /// 步长值        /// 
默认值1
///
public uint StepLength { get; set; } /// /// 超时长度 ///
默认180
///
public uint TimeoutLength { get; set; } /// /// 默认构造函数 /// 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); } } }; } /// /// 指定超时时间 执行某个方法 /// ///
执行 是否超时
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; } /// /// 设置计时器参数 /// /// 毫秒 public void SetInterval(int period) { if (period == Timeout.Infinite) { this.timer.Enabled = false; return; } this.timer.Interval = period; this.timer.Enabled = true; } /// /// 接收到信号 /// 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(); } }

 

转载于:https://www.cnblogs.com/08shiyan/p/4323196.html

你可能感兴趣的文章
大数据各种实用网站
查看>>
win7安装laravel
查看>>
Oracle 各后台进程功能说明
查看>>
屏蔽storm ui的kill功能
查看>>
我的友情链接
查看>>
Oracle Decode函数的使用
查看>>
MSF学习笔记
查看>>
经典脚本案例--check memory
查看>>
20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;20.33 构建文件分发系统;20.34...
查看>>
CentOS单用户与救援模式
查看>>
postfix 源码centos7上搭建及错误提示---亲测
查看>>
【Redis篇】Redis集群安装与初始
查看>>
jquery基础
查看>>
C# 集合已修改;可能无法执行枚举操作
查看>>
FSM Code Generator
查看>>
JDBC学习笔记——事务、存储过程以及批量处理
查看>>
JVM内存结构
查看>>
Java 锁
查看>>
7、索引在什么情况下遵循最左前缀的规则?
查看>>
c#中委托与事件
查看>>