Tag: async
Hangfire background tasks for .NET – Part 5: Adding Hangfire to an ASP.NET Core Application
For this part of the Hangfire series, I hacked together an application with the help of GitHub Copilot that allows users to compose a message for different cultures and send them to E-Mail addresses. As the focus is on the Hangfire part, most of the code does not follow best practices: there is no view…
Hangfire background tasks for .NET – Part 4: Hangfire Dashboard
Time to improve our monitoring and management of background jobs with Hangfire Dashboard.
Hangfire background tasks for .NET – Part 3: Hangfire server
Creating a Hangfire server application to process the jobs we created with Hangfire client.
Hangfire background tasks for .NET – Part 2: Using the client
This post is about how to use the client api to create jobs for Hangfire to process in the background. It also describes the initial project set-up and configuration.
Hangfire background tasks for .NET – Part 1: The fundamentals
Whether a task takes to long to be processed directly by the webserver, we need to perform something sometime but not necessarily right now or our app needs the ability to scale out: Enabling tasks to be processed in the background is a powerful tool, but rolling your own solution is complicated. Hangfire is a…
