using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server { /// /// 定时器处理者 /// public interface ITimerProcessor { /// /// 定时器 /// /// 定时器时间间隔 单位毫秒 void OnTime(int Interval); /// /// 秒级定时器 /// void SecondTime(); } }