StackSpot.ScopedBackgroundService 1.0.2

dotnet add package StackSpot.ScopedBackgroundService --version 1.0.2
NuGet\Install-Package StackSpot.ScopedBackgroundService -Version 1.0.2
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="StackSpot.ScopedBackgroundService" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StackSpot.ScopedBackgroundService --version 1.0.2
#r "nuget: StackSpot.ScopedBackgroundService, 1.0.2"
#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.
// Install StackSpot.ScopedBackgroundService as a Cake Addin
#addin nuget:?package=StackSpot.ScopedBackgroundService&version=1.0.2

// Install StackSpot.ScopedBackgroundService as a Cake Tool
#tool nuget:?package=StackSpot.ScopedBackgroundService&version=1.0.2

StackSpot Scoped Background Service

Componente projetado para auxiliar na instrumentação de serviços com escopo que executam em background.

Versões suportadas

  • net5.0
  • net6.0

Uso

1. Adicione o pacote NuGet StackSpot.ScopedBackgroundService ao seu projeto.
dotnet add package StackSpot.ScopedBackgroundService
3. Adicione ao seu IServiceCollection via services.AddScopedHostedService<T>() no Startup da aplicação ou Program. Onde T é a classe que contém a implementação do BackgroundService.
  • Por exemplo, podemos implementar um backgroundService chamado HelloWorldBackgroundService. Ficaria da seguinte maneira:
services.AddScopedHostedService<HelloWorldBackgroundService>();
Implementação
  • O backgroundService chamado HelloWorldBackgroundService, deverá obrigatóriamente utilizar a interface IScopedBackgroundService.
public class HelloWorldBackgroundService : IScopedBackgroundService
{
    private readonly ILogger<HelloWorldBackgroundService> _logger;

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

    public async Task ExecuteAsync(CancellationToken stoppingToken)
    {
        try
        {
            _logger.LogInformation("Worker running at: {time}", DateTimeOffset.Now);
        }
        catch (Exception ex)
        {
            _logger.LogError(ex, "Error to proccess {Service} {ExceptionMessage}", nameof(HelloWorldBackgroundService), ex.Message);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 683 4/14/2022
1.0.1 177 4/14/2022
1.0.0 189 4/14/2022