Robust. Adaptive. Precise.
TickerQ is a fast, reflection-free background task scheduler for .NET — built with source generators, EF Core integration, cron + time-based execution, and a real-time dashboard.
📚 Full Docs: https://tickerq.net
Repo: https://github.com/Arcenox-co/TickerQ-UI (docs are open-source and anyone can help us improving.)
Note: As of v2.2.0, all TickerQ packages are versioned together — even if a package has no changes — to keep the ecosystem in sync. Always update all packages to the same version.
- Time and cron scheduling for one-off and recurring jobs
- Reflection-free core with source-generated job handlers
- EF Core persistence for jobs, state, and history
- Live Dashboard UI - View Screenshots
- Retry policies & throttling for robust execution
- First-class dependency injection support
- Multi-node distributed coordination (via Redis heartbeats and dead-node cleanup)
Get up and running with TickerQ in under 5 minutes.
- .NET 8.0 or later
- A .NET project (Console, Web API, or ASP.NET Core)
dotnet add package TickerQAdd TickerQ to your Program.cs:
using TickerQ.DependencyInjection;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddTickerQ();
var app = builder.Build();
app.UseTickerQ(); // Activate job processor
app.Run();Create a job function with the [TickerFunction] attribute:
using TickerQ.Utilities.Base;
public class MyJobs
{
[TickerFunction("HelloWorld")]
public async Task HelloWorld(
TickerFunctionContext context,
CancellationToken cancellationToken)
{
Console.WriteLine($"Hello from TickerQ! Job ID: {context.Id}");
Console.WriteLine($"Scheduled at: {DateTime.UtcNow:HH:mm:ss}");
}
}Inject the manager and schedule your job:
using TickerQ.Utilities.Entities;
using TickerQ.Utilities.Interfaces.Managers;
public class MyService
{
private readonly ITimeTickerManager<TimeTickerEntity> _timeTickerManager;
public MyService(ITimeTickerManager<TimeTickerEntity> timeTickerManager)
{
_timeTickerManager = timeTickerManager;
}
public async Task ScheduleJob()
{
var result = await _timeTickerManager.AddAsync(new TimeTickerEntity
{
Function = "HelloWorld",
ExecutionTime = DateTime.UtcNow.AddSeconds(10) // Run in 10 seconds
});
if (result.IsSucceeded)
{
Console.WriteLine($"Job scheduled! ID: {result.Result.Id}");
}
}
}dotnet runWait 10 seconds and you should see:
Job scheduled! ID: {guid}
Hello from TickerQ! Job ID: {guid}
Scheduled at: {time}
We want to acknowledge the individuals and organizations who support the development of TickerQ through OpenCollective. Your contributions help us maintain and grow this project. If you'd like to support, check out the tiers below and join the community!
Become a Sponsor or Backer on OpenCollective
Become a gold sponsor and get your logo here with a link to your site.
Become a silver sponsor and get your logo here with a link to your site.
Become a bronze sponsor and get your logo here with a link to your site.
Become a backer and get your image on our README on GitHub with a link to your site.
PRs, ideas, and issues are welcome!
- Fork & branch
- Code your change
- Submit a Pull Request
MIT OR Apache 2.0 © Arcenox
You may choose either license to use this software.