摘要:
1、定义特性,特性中包含执行间隔的属性,在每个需要定时调度执行的方法上加上该特性,表示该方法参与定时调度。 2、编写方法,默认在调度服务启动时,会先访问该方法来获取全部需要定时执行的方法和间隔; 3、每个方法执行时,可以向服务返回日志,同时也可以返回下次执行的时间,服务将在指定的时间来调用该服务,默 阅读全文
摘要:
1 /// <summary> 2 /// 提供计时器服务 3 /// </summary> 4 public class TimerService 5 { 6 private static TimerService _Instance = null; 7 8 public static TimerService Instance 9 { 10 get 11 { 12 if (_Instance 阅读全文
摘要:
netstat -aon | findstr 80Proto Local Address Foreign Address State PID TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1688可以看出80端口被进程号为1688的程序占用.tasklist | findst 阅读全文