.NET 定时器内部机制
原文英文,约1400词,阅读约需5分钟。发表于: 。The basic abstractions The primary abstractions in the timer mechanism are two classes within the System.Threading namespace: TimerQueueTimer TimerQueue Both classes are marked with the...
定时器机制的基本抽象包括TimerQueueTimer和TimerQueue类。TimerQueueTimer是可调用对象的包装,支持在指定时间后执行并可重新调度。定时器存储在TimerQueue中,分为短定时器和长定时器。TimerQueue监控定时器状态并在适当时调度执行,支持无限和有限的触发时间。