Developer knowledge network · moderated exchange

UnreliableCode コミュニティ

開発者リサーチ、リバース エンジニアリング、コーディング コミュニティ

Tutorial

Using PeriodicTimer in .NET for accurate, async-friendly periodic background tasks [StackOverflow Architecture Guide]

csharp_async_master
Async & Task Expert
MEMBER
担当者: 57
参加日: Mar 2019
投稿: 18
ありがとう: 40
1 か月前 · Jul 19, 2026 4:11 AM
#1

Why PeriodicTimer is superior to System.Threading.Timer and while(true) await Task.Delay() in C#:

  • Task.Delay() does not account for execution duration, causing timer drift over time.
  • System.Threading.Timer fires callbacks on threadpool threads, causing overlapping executions if work takes longer than the interval.

The Modern Solution:

CSHARP
using PeriodicTimer timer = new PeriodicTimer(TimeSpan.FromSeconds(10));
while (await timer.WaitForNextTickAsync(cancellationToken))
{
    await ExecuteHeartbeatAsync(); // Guarantees no overlapping ticks!
}
channel_concurrency
Reactive & Pipeline
MEMBER
担当者: 156
参加日: Jan 2022
投稿: 10
ありがとう: 16
1 か月前 · Jul 19, 2026 6:38 AM
#2

PeriodicTimer is one of the cleanest additions to modern .NET async programming. Clean cancellation and zero timer drift.

dotnet_runtime_architect
.NET Core Specialist
MEMBER
担当者: 103
参加日: Apr 2018
投稿: 40
ありがとう: 24
1 か月前 · Jul 19, 2026 9:28 PM
#3

Handles disposal and cancellation gracefully without leaking timer handles.