A dashboard to manage Hangfire's recurring jobs.
$ dotnet add package RBC.Hangfire.RecurringJobAdmin
A simple dashboard to manage Hangfire's recurring jobs.
This repo is an extension for Hangfire based on Hangfire.RecurringJobAdmin package made by bamotav, thanks for your contribution to the community. It contains the following functionalities:
public class RecurringJobTesting
{
[RecurringJob("*/2 * * * *", "China Standard Time", "default", RecurringJobId = "Check-File-Exists")]
public void CheckFileExists()
{
Console.WriteLine("Check File Exists");
}
}
public class RecurringJobTesting
{
[DisableConcurrentlyJobExecution("CheckFileExists")]
public void CheckFileExists()
{
Console.WriteLine("Check File Exists");
}
[DisableConcurrentlyJobExecution("ValidateProcess", 0, 10, "It is not allowed to perform multiple same tasks.")]
[RecurringJob("*/2 * * * *", "China Standard Time", "default", RecurringJobId = "Validate-Process")]
public void ValidateProcess()
{
Console.WriteLine("Validate Process");
}
}


JobAgent.StopBackgroundJob("Enter the Job Id");
JobAgent.StartBackgroundJob("Enter the Job Id");
JobAgent.RemoveBackgroundJob("Enter the Job Id");
//Get all stopped jobs:
var StoppedJobs = JobAgent.GetAllJobStopped();

Install a package from Nuget.
Install-Package RBC.Hangfire.RecurringJobAdmin
Then add this in your code:
for service side:
services.AddHangfire(config => config.UseSqlServerStorage(Configuration.GetConnectionString("HangfireConnection"))
.UseRecurringJobAdmin(typeof(Startup).Assembly))
recommended:
services.AddHangfire(config => config.UseSqlServerStorage(Configuration.GetConnectionString("HangfireConnection"))
.UseRecurringJobAdmin(typeof(Startup).Assembly, typeof(Hangfire.Server.PerformContext).Assembly))
for startup side:
GlobalConfiguration.Configuration.UseSqlServerStorage("HangfireConnection").UseRecurringJobAdmin(typeof(Startup).Assembly)
recommended:
GlobalConfiguration.Configuration.UseSqlServerStorage("HangfireConnection").UseRecurringJobAdmin(typeof(Startup).Assembly, typeof(Hangfire.Server.PerformContext).Assembly)
If this project help you reduce time to develop, check out the fork source project: Hangfire.RecurringJobAdmin
Authored by: Serban Apostol (SerbanApostol)
This project is under MIT license. You can obtain the license copy here.