DEV Community

Zanyar Jalal
Zanyar Jalal

Posted on

Background Services in .NET Core: Building Efficient and Scalable Applications

Introduction:
In modern application development, it's not uncommon to encounter tasks that need to be executed in the background, such as sending emails, processing data, or performing scheduled jobs. These background tasks are crucial for maintaining a responsive user experience and ensuring the smooth operation of your application. In this post, we'll explore how to implement background services in .NET Core, a powerful feature that enables developers to efficiently handle such tasks.

What are Background Services?
Background services, also known as hosted services, are components in .NET Core applications that run in the background independently of user requests. They are implemented as long-running tasks that execute periodically or remain active throughout the application's lifetime. .NET Core provides a convenient and robust way to create and manage these services.

Creating a Background Service:
To create a background service in .NET Core, start by creating a new class that derives from the BackgroundService base class. This class will contain the logic for your background task.

using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

public class MyBackgroundService : BackgroundService
{
    private readonly ILogger<MyBackgroundService> _logger;

    public MyBackgroundService(ILogger<MyBackgroundService> logger)
    {
        _logger = logger;
    }

    protected override async Task ExecuteAsync(CancellationToken stoppingToken)
    {
        while (!stoppingToken.IsCancellationRequested)
        {
            // Your background task logic goes here
            _logger.LogInformation("Background service is running at: {time}", DateTimeOffset.Now);
            await Task.Delay(TimeSpan.FromSeconds(30), stoppingToken);
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

In this example, we create a background service called MyBackgroundService. The ExecuteAsync method is overridden, and within it, we run a continuous loop that logs a message every 30 seconds. You can replace the logging with any other background task, such as sending emails, processing data, etc.

Register the Background Service:

Next, we need to register the background service in the ConfigureServices method of the Startup class.

using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;

public class Startup
{
    // Other configuration code

    public void ConfigureServices(IServiceCollection services)
    {
        // Register the background service
        services.AddHostedService<MyBackgroundService>();

        // Other service registrations
    }

    // Other configuration code
}
Enter fullscreen mode Exit fullscreen mode

With this registration, the background service will start running automatically when the application starts.

Handling Asynchronous Tasks:
Often, background tasks involve asynchronous operations, such as calling external APIs or performing database operations. Within the ExecuteAsync method, you can use the Task.Run method or async/await to handle these asynchronous tasks efficiently. Be mindful of properly handling exceptions and cancellation tokens in such scenarios.

Conclusion:
Background services are a valuable feature in .NET Core that allows developers to efficiently handle long-running tasks and background processing. Whether you need to perform periodic operations, process data asynchronously, or handle scheduled jobs, background services provide a scalable and robust solution for your application. By understanding the concepts discussed in this post and incorporating them into your projects, you'll be well-equipped to build responsive and efficient .NET Core applications.

Happy coding! 🚀

Top comments (0)