FabulousScheduler 4.0.0

dotnet add package FabulousScheduler --version 4.0.0
                    
NuGet\Install-Package FabulousScheduler -Version 4.0.0
                    
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="FabulousScheduler" Version="4.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FabulousScheduler" Version="4.0.0" />
                    
Directory.Packages.props
<PackageReference Include="FabulousScheduler" />
                    
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 FabulousScheduler --version 4.0.0
                    
#r "nuget: FabulousScheduler, 4.0.0"
                    
#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.
#addin nuget:?package=FabulousScheduler&version=4.0.0
                    
Install FabulousScheduler as a Cake Addin
#tool nuget:?package=FabulousScheduler&version=4.0.0
                    
Install FabulousScheduler as a Cake Tool

<div align="center"> <img src="./assets/logo.png" width="70%" height="auto" > <h2 align="center">✨High performance recurring & queue-based scheduler✨</h2> <h3 align="center">Please leave a ⭐ as motivation if you liked the lib 😄 <br>🌪️Currently a WIP and in Active development.</h3>

build tests publish nuget downloads license

<h>If you have feature request feel free to open an Issue</h4> </div> <br />

📖 Contents

💡 Motivation <a id="motivation" />

One day I came across the fact that none of a libraries can perform many tasks in parallel, while doing it on time and non-stop. I needed to grab html pages with prices for certain products from sites such as ebay, amazon, walmart, to track the best deals for certain products and send a notification with a link to these products to my client.

🫵 Who is this library for <a id="purpose" />

I have developed this library for cases where you need to launch a large count of tasks without stopping. When you need to do a lot of IO-bound in parallel. I used this library where I had to grab the site pages at the same time once a minute and it proved to be stable. <br> In which projects it will be perform best❓<br>

  • If you need to grab a site pages without stopping <br>
  • If you need to get price quotes from exchanges for a large count of shares by API
  • And in many other projects where you have to do something on time, in large quantities and with a certain frequency

🚀 Features <a id="features" />

  • Implement default recurring scheduler
  • Implement default queue scheduler
  • Docs for CustomRecurringJobManager
  • Docs for CustomQueueJobManager
  • Benchmark for JobResult type
  • Return job result via pub/sub callback event
  • Cover queue scheduler unit tests
  • Cover InMemoryQueue unit tests
  • Implement PSQLQueue
  • Cover PSQLQueue unit tests
  • Cover recurring scheduler unit tests
  • Cover queue scheduler unit tests
  • A structure for store jobs. take: O(1) push: (?)
  • Refactot Task to ValueTask

📚 Usage <a id="usage" />

📋 Requirements <a id="requirements" />

  • dotnet 6.0+

🛠️ Installation <a id="installation" />

dotnet add package FabulousScheduler

✏️ QuickStart <a id="examples" />


Main idea

Every Job return the type <b>JobResult<<i>IJobOk</i>, <i>IJobFail</i>></b> if a job complete with success will be return an instance of <b><i>IJobOk</i></b> else <b><i>IJobFail</i></b>. I decided that an exception should not be throw, if an exception occurs, it will be put in <b><i>IJobFail</i></b>.<i>Exception</i>.

Result matching

    JobResult<Recurring.JobOk, Recurring.JobFail> result;
    
    // Do action
    result.Do(
        success: (ok) => Console.WriteLine("{0} is success", ok.JobID),
        failure: (fail) => Console.WriteLine("{0} is failure. Msg:{1}", fail.JobID, fail.Message)
    );
    
    // or matching
    var msg = result.Match<string>(
        success: ok => string.Format("{0} is success", ok.JobID),
        failure: fail => string.Format("{0} is failure. Msg:{1}", fail.JobID, fail.Message)
    );
    Console.WriteLine(msg);

FabulousScheduler uses a builder pattern that allows you to conveniently create a recurring or queue-based jobs for executing. <br>

  1. SetConfig()
  2. Register jobs
  3. RunScheduler()
using FabulousScheduler.Recurring.Interfaces;
using FabulousScheduler.Recurring.Result;
using FabulousScheduler.Core.Types;
using FabulousScheduler.Recurring;


var config = new Config(
    maxParallelJobExecute: 5,
    sleepAfterCheck: TimeSpan.FromMilliseconds(100)
);
RecurringJobManager.SetConfig(config);

// Register callback for job's result
RecurringJobManager.JobResultEvent += (ref IRecurringJob job, ref JobResult<JobOk, JobFail> res) =>
{
    var now = DateTime.Now;
    if (res.IsSuccess)
        Console.WriteLine("[{0:hh:mm:ss}] {1} {2}", now, job.Name, res.JobID);
    else
        Console.WriteLine("[{0:hh:mm:ss}] {1} {2}", now, job.Name, res.JobID);
};

// Register a job
RecurringJobManager.Register(
    action: () =>
    {
        //do some work
        int a = 10;
        int b = 100;
        int c = a + b;
    },
    sleepDuration: TimeSpan.FromSeconds(1),
    name: "ExampleJob"
);

// Start a job scheduler
RecurringJobManager.RunScheduler();

/*
 * The job will fall asleep for 1 second after success completion, then it will wake up and will be push the job pool
*/

Thread.Sleep(-1);

<img src="assets/deminstration_recurring_jobmanager.gif" width="auto" height="50%">

📄 LICENSE <a id="LICENSE" />

GPL3 LICENSE SYNOPSIS

TL;DR* Here's what the GPL3 license entails:

1. Anyone can copy, modify and distribute this software.
2. You have to include the license and copyright notice with each and every distribution.
3. You can use this software privately.
4. You can use this software for commercial purposes.
5. Source code MUST be made available when the software is distributed.
6. Any modifications of this code base MUST be distributed with the same license, GPLv3.
7. This software is provided without warranty.
8. The software author or license can not be held liable for any damages inflicted by the software.

More information on about the LICENSE can be found here

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 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.  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. 
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
4.0.0 133 3/20/2025
3.1.3 9,850 6/14/2024
3.1.2 93 6/14/2024
3.1.0 11,803 2/3/2024
3.0.1 132 1/27/2024
2.2.7 499 1/17/2024
2.2.6 116 1/17/2024
2.2.5 112 1/17/2024
2.2.4 114 1/17/2024
2.2.3 136 1/12/2024
2.2.2 128 1/9/2024
2.2.1 118 1/8/2024
2.1.6 160 1/2/2024
2.1.5 117 1/1/2024
2.1.4 109 1/1/2024
2.1.3 120 1/1/2024
2.1.2 135 1/1/2024
2.1.1 123 1/1/2024
2.1.0 125 1/1/2024