DotNetBrightener.Core.BackgroundTasks 2025.0.6-preview-406

This is a prerelease version of DotNetBrightener.Core.BackgroundTasks.
There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetBrightener.Core.BackgroundTasks --version 2025.0.6-preview-406
                    
NuGet\Install-Package DotNetBrightener.Core.BackgroundTasks -Version 2025.0.6-preview-406
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotNetBrightener.Core.BackgroundTasks" Version="2025.0.6-preview-406" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetBrightener.Core.BackgroundTasks" Version="2025.0.6-preview-406" />
                    
Directory.Packages.props
<PackageReference Include="DotNetBrightener.Core.BackgroundTasks" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetBrightener.Core.BackgroundTasks --version 2025.0.6-preview-406
                    
#r "nuget: DotNetBrightener.Core.BackgroundTasks, 2025.0.6-preview-406"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DotNetBrightener.Core.BackgroundTasks@2025.0.6-preview-406
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotNetBrightener.Core.BackgroundTasks&version=2025.0.6-preview-406&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DotNetBrightener.Core.BackgroundTasks&version=2025.0.6-preview-406&prerelease
                    
Install as a Cake Tool

DotNetBrightener Background Tasks

Overview

The DotNetBrightener Background Tasks module provides a comprehensive, cron-based task scheduling system for .NET applications. It enables developers to schedule and execute background tasks with precise timing control, overlap prevention, and robust error handling.

Key Features

  • Flexible Scheduling: Support for cron expressions, predefined intervals, and one-time execution
  • Overlap Prevention: Built-in locking mechanism to prevent concurrent execution of the same task
  • Multiple Task Types: Support for both interface-based tasks (IBackgroundTask) and method-based tasks
  • Event-Driven Architecture: Integration with EventPubSub system for task lifecycle events
  • Database Persistence: Optional database storage for task definitions and execution history
  • Timezone Support: Execute tasks in specific timezones
  • Conditional Execution: Execute tasks based on custom predicates
  • Dependency Injection: Full integration with .NET's dependency injection container
  • Comprehensive Logging: Detailed logging for monitoring and debugging

Architecture

Core Components

IScheduler

The main interface for scheduling and managing background tasks. Provides methods to:

  • Schedule tasks by type or method
  • Execute tasks at specific times
  • Cancel running tasks
  • Unschedule tasks
IBackgroundTask

Interface that background task classes must implement:

public interface IBackgroundTask
{
    Task Execute();
}
ICancellableTask

Extended interface for tasks that support cancellation:

public interface ICancellableTask : IBackgroundTask
{
    CancellationToken CancellationToken { get; set; }
}
IScheduleConfig

Fluent interface for configuring task schedules with methods like:

  • EverySecond(), EveryMinute(), Hourly(), Daily()
  • Cron(string expression)
  • PreventOverlapping()
  • When(Func<Task<bool>> predicate)
  • AtTimeZone(TimeZoneInfo timeZoneInfo)

Task Execution Flow

  1. SchedulerHostedService runs every second
  2. Scheduler checks all registered tasks for due execution
  3. Tasks are executed in parallel with proper scoping
  4. Events are published for task lifecycle (Started, Ended, Failed)
  5. Overlap prevention is enforced if configured
  6. Results and errors are logged

Getting Started

1. Installation and Setup

Add the background tasks services to your application:

var builder = WebApplication.CreateBuilder(args);

// Enable background task services
builder.Services.EnableBackgroundTaskServices(builder.Configuration);

var app = builder.Build();

2. Creating Background Tasks

Interface-Based Tasks
public class EmailCleanupTask : IBackgroundTask
{
    private readonly IEmailService _emailService;
    private readonly ILogger<EmailCleanupTask> _logger;

    public EmailCleanupTask(IEmailService emailService, ILogger<EmailCleanupTask> logger)
    {
        _emailService = emailService;
        _logger = logger;
    }

    public async Task Execute()
    {
        _logger.LogInformation("Starting email cleanup task");
        await _emailService.DeleteOldEmails();
        _logger.LogInformation("Email cleanup task completed");
    }
}
Cancellable Tasks
public class DataProcessingTask : ICancellableTask
{
    public CancellationToken CancellationToken { get; set; }
    
    public async Task Execute()
    {
        while (!CancellationToken.IsCancellationRequested)
        {
            // Process data
            await ProcessBatch();
            await Task.Delay(1000, CancellationToken);
        }
    }
}

3. Registering Tasks

// Register background tasks
builder.Services.AddBackgroundTask<EmailCleanupTask>();
builder.Services.AddBackgroundTask<DataProcessingTask>();

4. Scheduling Tasks

var scheduler = app.Services.GetService<IScheduler>();

// Schedule with predefined intervals
scheduler.ScheduleTask<EmailCleanupTask>()
         .Daily()
         .PreventOverlapping();

// Schedule with custom intervals
scheduler.ScheduleTask<DataProcessingTask>()
         .EverySeconds(30)
         .PreventOverlapping();

// Schedule with cron expressions
scheduler.ScheduleTask<EmailCleanupTask>()
         .Cron("0 2 * * *") // Daily at 2 AM
         .AtTimeZone(TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"));

// One-time execution
scheduler.ScheduleTask<DataProcessingTask>()
         .Once();

Advanced Features

Method-Based Scheduling

You can schedule methods directly without implementing IBackgroundTask:

public class UtilityService
{
    public async Task CleanupTempFiles()
    {
        // Cleanup logic
    }
    
    public void GenerateReports()
    {
        // Report generation logic
    }
}

// Schedule methods
var methodInfo = typeof(UtilityService).GetMethod(nameof(UtilityService.CleanupTempFiles));
scheduler.ScheduleTask(methodInfo)
         .Hourly()
         .PreventOverlapping();

Conditional Execution

Execute tasks only when certain conditions are met:

scheduler.ScheduleTask<BackupTask>()
         .Daily()
         .When(async () => await IsMaintenanceWindowOpen())
         .PreventOverlapping();

Timezone-Aware Scheduling

scheduler.ScheduleTask<ReportTask>()
         .DailyAt(9, 0) // 9:00 AM
         .AtTimeZone(TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"));

Configuration

Basic Configuration

Configure the scheduler interval in appsettings.json:

{
  "BackgroundTaskOptions": {
    "Interval": "00:00:30"
  }
}

Database Storage (Optional)

For persistent task definitions and execution history:

builder.Services.AddBackgroundTaskStorage(options =>
{
    options.UseSqlServer(connectionString);
});

This creates a BackgroundTaskDefinition table to store:

  • Task assembly and type information
  • Cron expressions and timezone settings
  • Execution history and error logs
  • Enable/disable status

Event System Integration

The background tasks system publishes events through the EventPubSub system:

Available Events

  • ScheduledEventStarted: Published when a task begins execution
  • ScheduledEventEnded: Published when a task completes successfully
  • ScheduledEventFailed: Published when a task throws an exception

Event Handlers

public class TaskMonitoringHandler : IEventHandler<ScheduledEventFailed>
{
    public async Task<bool> HandleEvent(ScheduledEventFailed eventMessage)
    {
        // Log error, send notifications, etc.
        return true;
    }
}

Scheduling Options Reference

Predefined Intervals

  • EverySecond() - Every second
  • EverySeconds(int seconds) - Every N seconds
  • EveryMinute() - Every minute
  • EveryFiveMinutes() - Every 5 minutes
  • EveryTenMinutes() - Every 10 minutes
  • EveryFifteenMinutes() - Every 15 minutes
  • EveryThirtyMinutes() - Every 30 minutes
  • Hourly() - Every hour
  • HourlyAt(int minute) - Every hour at specified minute
  • Daily() - Every day at midnight
  • DailyAt(int hour, int minute) - Every day at specified time
  • Weekly() - Every week
  • Monthly() - Every month

Day-of-Week Restrictions

  • Monday(), Tuesday(), Wednesday(), Thursday(), Friday(), Saturday(), Sunday()
  • Weekday() - Monday through Friday
  • Weekend() - Saturday and Sunday

Cron Expressions

Support for standard 5 or 6-part cron expressions:

  • 5-part: minute hour day month weekday
  • 6-part: second minute hour day month weekday

Examples:

  • "0 2 * * *" - Daily at 2:00 AM
  • "*/15 * * * *" - Every 15 minutes
  • "0 0 * * 0" - Every Sunday at midnight
  • "30 14 1 * *" - 2:30 PM on the 1st of every month

Error Handling and Monitoring

Logging

The system provides comprehensive logging at various levels:

  • Task execution start/end
  • Error details with stack traces
  • Performance metrics (execution duration)
  • Overlap prevention actions

Exception Handling

  • Exceptions in tasks are caught and logged
  • Failed tasks don't affect other scheduled tasks
  • ScheduledEventFailed events are published for monitoring

Performance Monitoring

  • Execution duration tracking
  • Concurrent execution monitoring
  • Scheduler iteration counts

Best Practices

  1. Use Dependency Injection: Register tasks as scoped services for proper resource management
  2. Implement Proper Logging: Use structured logging for better monitoring
  3. Handle Cancellation: Implement ICancellableTask for long-running tasks
  4. Prevent Overlapping: Use PreventOverlapping() for tasks that shouldn't run concurrently
  5. Use Appropriate Intervals: Don't over-schedule tasks; consider system resources
  6. Monitor Performance: Watch execution times and adjust schedules accordingly
  7. Handle Exceptions: Implement proper error handling within tasks
  8. Use Timezone Awareness: Specify timezones for business-critical scheduling

Troubleshooting

Common Issues

  1. Tasks Not Executing: Check if EnableBackgroundTaskServices() is called
  2. Dependency Resolution Errors: Ensure tasks are registered with AddBackgroundTask<T>()
  3. Overlapping Prevention Not Working: Verify unique identifiers are properly set
  4. Timezone Issues: Use IANA timezone identifiers for cross-platform compatibility

Debugging

Enable detailed logging to troubleshoot issues:

builder.Services.AddLogging(logging =>
{
    logging.SetMinimumLevel(LogLevel.Debug);
    logging.AddConsole();
});

Migration and Deployment

When using database storage, the system automatically handles database migrations through the MigrateBackgroundTaskDbContextHostedService.

Performance Considerations

  • The scheduler runs every second by default
  • Tasks execute in parallel using separate service scopes
  • Overlap prevention uses in-memory locking with configurable timeouts
  • Database operations are optimized with proper indexing
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on DotNetBrightener.Core.BackgroundTasks:

Package Downloads
DotNetBrightener.WebApp.CommonShared

Package Description

DotNetBrightener.Core.BackgroundTasks.DependencyInjection

Package Description

DotNetBrightener.Core.BackgroundTasks.Data

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.0.10-preview-605 56 11/17/2025
2025.0.10-preview-602 59 11/17/2025
2025.0.10-preview-581 310 11/11/2025
2025.0.10-preview-559 205 10/29/2025
2025.0.10-preview-557 218 10/27/2025
2025.0.9 210 10/26/2025
2025.0.9-preview-553 203 10/26/2025
2025.0.9-preview-539 147 10/12/2025
2025.0.9-preview-535 212 10/8/2025
2025.0.9-preview-509 228 10/2/2025
2025.0.9-preview-508 211 10/2/2025
2025.0.9-preview-487 235 9/29/2025
2025.0.9-preview-481 205 9/29/2025
2025.0.9-preview-473 188 9/28/2025
2025.0.8 235 9/23/2025
2025.0.6 237 9/22/2025
2025.0.6-preview-455 223 9/22/2025
2025.0.6-preview-454 323 9/17/2025
2025.0.6-preview-441 160 9/14/2025
2025.0.6-preview-440 162 9/14/2025
2025.0.6-preview-406 210 9/2/2025
2025.0.6-preview-401 192 9/2/2025
2025.0.6-preview-400 185 9/2/2025
2025.0.6-preview-369 234 8/27/2025
2025.0.6-preview-368 236 8/27/2025
2025.0.6-preview-334 220 8/18/2025
2025.0.6-preview-333 152 7/27/2025
2025.0.6-preview-332 515 7/24/2025
2025.0.6-preview-331 529 7/24/2025
2025.0.6-preview-328 519 7/24/2025
2025.0.6-preview-327 394 7/21/2025
2025.0.6-preview-326 391 7/21/2025
2025.0.6-preview-325 295 7/20/2025
2025.0.6-preview-324 285 7/20/2025
2025.0.6-preview-322 293 7/20/2025
2025.0.6-preview-321 300 7/19/2025
2025.0.6-preview-320 294 7/19/2025
2025.0.6-preview-319 203 7/17/2025
2025.0.6-preview-317 202 7/17/2025
2025.0.6-preview-316 197 7/17/2025
2025.0.6-preview-315 200 7/17/2025
2025.0.6-preview-314 202 7/17/2025
2025.0.6-preview-313 195 7/17/2025
2025.0.6-preview-312 199 7/16/2025
2025.0.5 225 7/10/2025
2025.0.5-preview-307 141 7/5/2025
2025.0.4 159 7/5/2025
2025.0.4-preview-305 150 7/4/2025
2025.0.4-preview-304 210 7/1/2025
2025.0.4-preview-299 202 5/31/2025
2025.0.4-preview-298 173 5/30/2025
2025.0.4-preview-296 214 5/30/2025
2025.0.4-preview-295 223 5/29/2025
2025.0.4-preview-293 224 5/26/2025
2025.0.4-preview-292 219 5/26/2025
2025.0.3 251 2/10/2025
2025.0.3-preview-288 187 2/10/2025
2025.0.2 223 1/21/2025
2025.0.2-preview-278 172 1/21/2025
2025.0.2-preview-277 186 12/16/2024
2025.0.1-rc-243301701 470 11/25/2024
2024.0.14.6 240 11/25/2024
2024.0.14.6-rc-243031001 269 10/29/2024
2024.0.14.6-rc-243030701 206 10/29/2024
2024.0.14.6-rc-242840501 190 10/10/2024
2024.0.14.6-rc-242820305 195 10/8/2024
2024.0.14.6-rc-242771401 334 10/3/2024
2024.0.14.6-rc-242770501 188 10/3/2024
2024.0.14.6-rc-242770201 212 10/3/2024
2024.0.14.6-rc-242761801 189 10/2/2024
2024.0.14.6-rc-242761601 200 10/2/2024
2024.0.14.6-rc-242761501 185 10/2/2024
2024.0.14.6-rc-242761401 211 10/2/2024
2024.0.14.6-rc-242760701 204 10/2/2024
2024.0.14.6-rc-242751002 199 10/1/2024
2024.0.14.6-rc-242750901 204 10/1/2024
2024.0.14.6-rc-242750502 193 10/1/2024
2024.0.14.6-rc-242750201 200 10/1/2024
2024.0.14.6-rc-242741501 193 9/30/2024
2024.0.14.6-rc-242730701 212 9/29/2024
2024.0.14.6-preview-2730501 186 9/29/2024
2024.0.14.6-preview-2701501 228 9/26/2024
2024.0.14.6-preview-2620901 262 9/18/2024
2024.0.14.6-preview-2570701 231 9/13/2024
2024.0.14.6-preview-2510703 279 9/7/2024
2024.0.14.6-preview-2480501 224 9/4/2024
2024.0.14.6-preview-2430401 235 8/30/2024
2024.0.14.6-preview-242730701 198 9/29/2024
2024.0.14.6-preview-2421703 220 8/29/2024
2024.0.14.6-preview-2421701 195 8/29/2024
2024.0.14.6-preview-2420901 201 8/29/2024
2024.0.14.6-preview-2390101 243 8/26/2024
2024.0.14.6-preview-2381603 236 8/25/2024
2024.0.14.6-preview-2341601 280 8/21/2024
2024.0.14.6-preview-2321602 239 8/20/2024
2024.0.14.6-preview-2190801 253 8/6/2024
2024.0.14.6-preview-2041501 218 7/22/2024
2024.0.14.6-preview-1920603 274 7/10/2024
2024.0.14.6-preview-1920301 202 7/10/2024
2024.0.14.6-preview-1911302 206 7/9/2024
2024.0.14.6-preview-1901001 219 7/8/2024
2024.0.14.6-preview-1900901 197 7/8/2024
2024.0.14.6-preview-1900801 219 7/8/2024
2024.0.14.6-preview-1860304 208 7/4/2024
2024.0.14.5 310 7/1/2024
2024.0.14.5-preview-1811601 225 6/29/2024
2024.0.14.5-preview-1810501 245 6/29/2024
2024.0.14.5-preview-180132 234 6/28/2024
2024.0.14.5-preview-180131 206 6/28/2024
2024.0.14.5-preview-180121 214 6/28/2024
2024.0.14.4 263 6/27/2024
2024.0.14.4-preview-8 183 6/27/2024
2024.0.14.4-preview-7 211 6/27/2024
2024.0.14.3 261 6/21/2024
2024.0.14.1 255 6/6/2024
2024.0.14.1-preview 214 6/6/2024
2024.0.14-preview-1 194 6/6/2024
2024.0.13.8-preview 218 6/6/2024
2024.0.13.2-preview-247 157 6/6/2024
2024.0.13.1-preview-0146 222 6/6/2024
2024.0.13-preview-1 150 6/6/2024
2024.0.12.15803-preview-03 210 6/6/2024
2024.0.12.15608 252 6/4/2024
2024.0.12.15515 331 6/3/2024
2024.0.12.15220 232 5/31/2024
2024.0.12.15220-alpha31-240... 179 5/31/2024
2024.0.12.14911 299 5/28/2024
2024.0.12.14910-alpha28-240... 197 5/28/2024
2024.0.12.14823 264 5/27/2024
2024.0.12.14522-alpha7-2405... 232 5/24/2024
2024.0.12.14514-alpha6-2405... 241 5/24/2024
2024.0.12.14511 277 5/24/2024
2024.0.12.14314 296 5/22/2024
2024.0.12.14114 279 5/20/2024
2024.0.12.12815 310 5/7/2024
2024.0.12.12814 271 5/7/2024
2024.0.12.12721 293 5/6/2024
2024.0.12.12702 260 5/5/2024
2024.0.12.12622 278 5/5/2024
2024.0.12.12514 249 5/4/2024
2024.0.12.12512 273 5/4/2024
2024.0.12.12510 277 5/4/2024
2024.0.12.12420 249 5/3/2024
2024.0.12.12319 220 5/2/2024
2024.0.12.12319-rc-2405021801 158 5/2/2024
2024.0.12.12318 205 5/2/2024
2024.0.12.12215 245 5/1/2024
2024.0.12.12011 254 4/29/2024
2024.0.12.11720 265 4/26/2024
2024.0.12.11719 260 4/26/2024
2024.0.12.11621 275 4/25/2024
2024.0.12.11523 263 4/24/2024
2024.0.12.11522 274 4/24/2024
2024.0.12.11417 257 4/23/2024
2024.0.12.11400 258 4/22/2024
2024.0.12.11316 241 4/22/2024
2024.0.11.10220 229 4/11/2024
2024.0.11.10120 210 4/10/2024
2024.0.11.10119 212 4/10/2024
2024.0.11.10115 193 4/10/2024
2024.0.11.9914 232 4/8/2024
2024.0.11.9901 205 4/7/2024
2024.0.11.9823 220 4/7/2024
2024.0.11.9401 230 4/2/2024
2024.0.11.9301 216 4/1/2024
2024.0.11.9206 241 3/31/2024
2024.0.11.9205 224 3/31/2024
2024.0.11.8200 233 3/21/2024
2024.0.11.8122 203 3/21/2024
2024.0.11.8120 212 3/21/2024
2024.0.11.7320 252 3/13/2024
2024.0.11.7316 217 3/13/2024
2024.0.11.7310 234 3/13/2024
2024.0.11 231 3/13/2024
2024.0.10 263 3/3/2024
2024.0.9 246 2/27/2024
2024.0.8 277 2/1/2024
2024.0.7 219 1/26/2024
2024.0.6 215 1/25/2024
2024.0.5 209 1/24/2024
2024.0.4 205 1/24/2024
2024.0.3 224 1/22/2024
2024.0.2 279 1/10/2024
2024.0.1 227 1/9/2024
2024.0.1-alpha-3 209 1/9/2024
2024.0.1-alpha-2 179 1/9/2024
2024.0.1-alpha-1 209 1/3/2024
2024.0.0 282 12/26/2023
2023.0.27 361 12/21/2023
2023.0.26 253 12/21/2023
2023.0.25 282 12/11/2023
2023.0.24 260 12/8/2023
2023.0.23 229 12/6/2023
2023.0.21 253 12/4/2023
2023.0.20 272 11/27/2023
2023.0.19 242 11/20/2023
2023.0.18 276 10/25/2023
2023.0.17 294 10/22/2023
2023.0.16 328 10/16/2023
2023.0.16-alpha-1 209 10/16/2023
2023.0.15 251 10/14/2023
2023.0.14 236 10/14/2023
2023.0.13 231 10/14/2023
2023.0.12 254 10/14/2023
2023.0.11 225 10/10/2023
2023.0.10 233 10/9/2023
2023.0.9 347 8/16/2023
2023.0.8 262 8/15/2023
2023.0.8-alpha-2 341 5/31/2023
2023.0.7 272 5/12/2023
2023.0.6 461 5/10/2023
2023.0.5 265 5/7/2023
2023.0.4 299 4/22/2023
2023.0.3 333 4/19/2023
2023.0.2 338 4/6/2023
2023.0.1 337 3/13/2023
2022.10.0 379 10/28/2022