Cronograph.UI
1.0.38
See the version list below for details.
dotnet add package Cronograph.UI --version 1.0.38
NuGet\Install-Package Cronograph.UI -Version 1.0.38
<PackageReference Include="Cronograph.UI" Version="1.0.38" />
paket add Cronograph.UI --version 1.0.38
#r "nuget: Cronograph.UI, 1.0.38"
// Install Cronograph.UI as a Cake Addin #addin nuget:?package=Cronograph.UI&version=1.0.38 // Install Cronograph.UI as a Cake Tool #tool nuget:?package=Cronograph.UI&version=1.0.38
Cronograph - Simple Cronjob runner
Overview
Simple Cronjob runner created as a HangFire replacement for the times where you just need an inprocess job execution engine. Hangfire can be found here. Cronograph is easily testable and integrates well into Microsoft.Extensions.DependencyInjection.
Install the Cronograph nuget package using the following command in the package manager console window
PM> Install-Package Cronograph
The Nuget package can be found here
Features
The following features are found in Cronograph:
- Single process job execution
- Recurring jobs based on Cron schedules
- Fire-and-forget jobs
- Delayed run-once jobs
The following features are NOT found in Cronograph:
- Scaling out on multiple physical processes and servers
- Job Continuations
- Groups/batches of jobs
- Automatic retries
Usage
In order just to get the simplest cron job up and running in a minimal ASP.NET Core API. Do the following:
using Cronograph;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddCronograph(builder.Configuration);
var app = builder.Build();
var cronograph = app.Services.GetRequiredService<ICronograph>();
cronograph.AddJob("Test job", (cancellationToken) => { Console.WriteLine("Boom!"); return Task.CompletedTask; }, "*/10 * * * * *");
app.Run();
Cronograph also supports cron job classes using the interface IScheduledService. This can be acheived in the following way:
using Cronograph;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddCronograph(builder.Configuration);
var app = builder.Build();
var cronograph = app.Services.GetRequiredService<ICronograph>();
cronograph.AddScheduledService<MyService>("Test service", "*/10 * * * * *");
app.Run();
And with the following scheduled service:
public class MyService : IScheduledService
{
public Task ExecuteAsync(CancellationToken stoppingToken)
{
Console.WriteLine("Scheduled service boom!");
return Task.CompletedTask;
}
}
UserInterface
Crongraph has a simple user interface to visualize the jobs currently registred on the system. Add the following NuGET package:
PM> Install-Package Cronograph.UI
And then add the following line of code to your program.cs:
using Cronograph.UI;
var app = builder.Build();
// Add this..
app.UseCronographUI();
app.Run();
And you should be able to see the user interface on https://YourFantasticMachineAnd:port/Cronograph
Product | Versions 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. |
-
net8.0
- Cronograph.Shared (>= 1.0.38)
- Microsoft.Extensions.FileProviders.Embedded (>= 8.0.4)
- MimeTypeMapOfficial (>= 1.0.17)
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.70 | 304 | 7/16/2024 |
1.0.69 | 571 | 5/29/2024 |
1.0.68 | 128 | 5/29/2024 |
1.0.67 | 124 | 5/29/2024 |
1.0.66 | 120 | 5/28/2024 |
1.0.64 | 133 | 5/26/2024 |
1.0.63 | 137 | 5/26/2024 |
1.0.62 | 147 | 5/26/2024 |
1.0.61 | 124 | 5/26/2024 |
1.0.60 | 152 | 5/26/2024 |
1.0.59 | 146 | 5/26/2024 |
1.0.58 | 123 | 5/26/2024 |
1.0.57 | 141 | 5/25/2024 |
1.0.55 | 138 | 5/24/2024 |
1.0.54 | 205 | 5/23/2024 |
1.0.51 | 134 | 5/23/2024 |
1.0.49 | 228 | 5/6/2024 |
1.0.46 | 158 | 4/26/2024 |
1.0.43 | 135 | 4/16/2024 |
1.0.42 | 114 | 4/16/2024 |
1.0.41 | 126 | 4/15/2024 |
1.0.40 | 193 | 4/15/2024 |
1.0.39 | 102 | 4/15/2024 |
1.0.38 | 108 | 4/15/2024 |
1.0.37 | 100 | 4/15/2024 |
1.0.36 | 99 | 4/15/2024 |
1.0.35 | 111 | 4/15/2024 |
1.0.34 | 112 | 4/14/2024 |
1.0.33 | 119 | 4/11/2024 |
1.0.31 | 109 | 4/4/2024 |
1.0.30 | 107 | 4/4/2024 |
1.0.26 | 311 | 10/16/2023 |
1.0.25 | 338 | 9/11/2023 |
1.0.19 | 128 | 9/11/2023 |
1.0.18 | 123 | 9/11/2023 |
1.0.17 | 303 | 12/13/2022 |
1.0.16 | 421 | 12/11/2022 |
1.0.15 | 409 | 12/7/2022 |
1.0.14 | 348 | 12/7/2022 |
1.0.13 | 300 | 12/7/2022 |
1.0.12 | 297 | 12/7/2022 |
1.0.11 | 399 | 12/5/2022 |
1.0.10 | 299 | 12/5/2022 |
1.0.9 | 287 | 12/5/2022 |
1.0.8 | 297 | 12/5/2022 |
1.0.7 | 297 | 12/5/2022 |
1.0.6 | 316 | 12/4/2022 |