Fewbit.Bricks.Jobs.Hangfire 1.1.7

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

// Install Fewbit.Bricks.Jobs.Hangfire as a Cake Tool
#tool nuget:?package=Fewbit.Bricks.Jobs.Hangfire&version=1.1.7

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 net8.0 is compatible.  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.1.7 63 6/11/2024
1.1.6 92 4/23/2024
1.1.5 78 4/22/2024
1.1.4 85 4/22/2024
1.1.3 77 4/22/2024
1.1.2 79 4/22/2024
1.1.1 82 4/22/2024
1.1.0 76 4/22/2024
1.0.14 98 4/7/2024
1.0.13 85 4/6/2024
1.0.12 115 1/17/2024
1.0.11 123 12/22/2023
1.0.10 148 11/14/2023
1.0.9 146 10/15/2023
1.0.8 117 10/15/2023
1.0.7 119 10/15/2023
1.0.6 123 10/15/2023
1.0.5 117 10/12/2023
1.0.4 116 10/10/2023
1.0.3 113 10/9/2023
1.0.2 110 10/9/2023
1.0.1 113 9/28/2023
1.0.0 110 9/28/2023
1.0.0-preview9 91 9/23/2023
1.0.0-preview8 84 9/23/2023
1.0.0-preview7 87 9/23/2023
1.0.0-preview6 90 9/22/2023
1.0.0-preview5 80 9/22/2023
1.0.0-preview4 87 9/22/2023
1.0.0-preview3 80 9/22/2023
1.0.0-preview2 86 9/22/2023
1.0.0-preview11 82 9/28/2023
1.0.0-preview10 81 9/28/2023
1.0.0-preview1 78 9/22/2023