Developer knowledge network ยท moderated exchange

UnreliableCode Community

Developer Research, Reverse Engineering & Coding Community

Knowledge indexLive
4Categories
919Threads
2.8KPosts
Tutorial

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

csharp_async_master
Async & Task Expert
MEMBER
Rep: 57
Join Date: Mar 2019
Posts: 18
Thanks: 40
1 months ago ยท 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
Rep: 156
Join Date: Jan 2022
Posts: 10
Thanks: 16
1 months ago ยท 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
Rep: 103
Join Date: Apr 2018
Posts: 40
Thanks: 24
1 months ago ยท Jul 19, 2026 9:28 PM
#3

Handles disposal and cancellation gracefully without leaking timer handles.