Fewbit.Bricks.Jobs.Hangfire 1.0.0-preview8

This is a prerelease version of Fewbit.Bricks.Jobs.Hangfire.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Fewbit.Bricks.Jobs.Hangfire --version 1.0.0-preview8
                    
NuGet\Install-Package Fewbit.Bricks.Jobs.Hangfire -Version 1.0.0-preview8
                    
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="Fewbit.Bricks.Jobs.Hangfire" Version="1.0.0-preview8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fewbit.Bricks.Jobs.Hangfire" Version="1.0.0-preview8" />
                    
Directory.Packages.props
<PackageReference Include="Fewbit.Bricks.Jobs.Hangfire" />
                    
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 Fewbit.Bricks.Jobs.Hangfire --version 1.0.0-preview8
                    
#r "nuget: Fewbit.Bricks.Jobs.Hangfire, 1.0.0-preview8"
                    
#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 Fewbit.Bricks.Jobs.Hangfire@1.0.0-preview8
                    
#: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=Fewbit.Bricks.Jobs.Hangfire&version=1.0.0-preview8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Fewbit.Bricks.Jobs.Hangfire&version=1.0.0-preview8&prerelease
                    
Install as a Cake Tool

Hangfire Job Processor

const string jobId = "1";

StartAndBuildProcessor()
    .ScheduleRecurringCall<IHeartBeatJob, HeartBeatJobData>(
        new HeartBeatJobData(DateTimeOffset.Now),
        Cron.Minutely(),
        jobId
    );

GlobalJobFilters.Filters.Add(
    new AutomaticRetryAttribute { Attempts = 0, OnAttemptsExceeded = AttemptsExceededAction.Delete }
);

using var server = new BackgroundJobServer();
Console.ReadKey();
return;

static IJobProcessor StartAndBuildProcessor()
{
    var services = new ServiceCollection();
    services.AddLogging(configuration =>
    {
        configuration.AddConsole();
    });
    services.AddSingleton<IJobProcessor, HangfireJobProcessor>();
    services.AddTransient<IHeartBeatJob, HeartBeatJob>();
    services.AddHangfire(configuration =>
    {
        configuration.UseSQLiteStorage("test.db");
    });
    services.AddHangfireServer();
    var serviceProvider = services.BuildServiceProvider();
    return serviceProvider.GetRequiredService<IJobProcessor>();
}
Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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.  net9.0 was computed.  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

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.2.1 144 12/26/2024
1.1.9 142 10/6/2024
1.1.8 133 10/6/2024
1.1.7 144 6/11/2024
1.1.6 161 4/23/2024
1.1.5 139 4/22/2024
1.1.4 150 4/22/2024
1.1.3 139 4/22/2024
1.1.2 151 4/22/2024
1.1.1 145 4/22/2024
1.1.0 142 4/22/2024
1.0.14 160 4/7/2024
1.0.13 154 4/6/2024
1.0.12 185 1/17/2024
1.0.11 182 12/22/2023
1.0.10 198 11/14/2023
1.0.9 202 10/15/2023
1.0.8 171 10/15/2023
1.0.7 173 10/15/2023
1.0.6 186 10/15/2023
1.0.5 182 10/12/2023
1.0.4 172 10/10/2023
1.0.3 177 10/9/2023
1.0.2 164 10/9/2023
1.0.1 177 9/28/2023
1.0.0 176 9/28/2023
1.0.0-preview9 145 9/23/2023
1.0.0-preview8 132 9/23/2023
1.0.0-preview7 135 9/23/2023
1.0.0-preview6 146 9/22/2023
1.0.0-preview5 134 9/22/2023
1.0.0-preview4 141 9/22/2023
1.0.0-preview3 134 9/22/2023
1.0.0-preview2 141 9/22/2023
1.0.0-preview11 132 9/28/2023
1.0.0-preview10 134 9/28/2023
1.0.0-preview1 130 9/22/2023