Staring at the .Net 4.0 reference source, System.Timers.Timer
seems to use a System.Threading.Timer
to handle the actual implementation details. The latter generates timers by calling AddTimerNative
. AddTimerNative
is an internal call.
Googling AddTimerNative
lead to a lot of interesting results, including Willy Denoyette's comment, where he states that it calls CreateTimerQueueTimer.
That page states that "Callback functions are queued to the thread pool. "
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…