Category: .NET Core
-
Running Background Tasks in .NET Core
Introduction You may often want to run background tasks without blocking your main thread. For example, a web API that accepts a request from the client and immediately returns a response. There are various tasks that we want to execute in the background without blocking the main thread: There are various ways to run background […]