Autofac.Extras.Quartz 10.0.0

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

Autofac.Extras.Quartz

Autofac integration package for Quartz.Net.

Autofac.Extras.Quartz creates nested litefime scope for each Quartz Job. Nested scope is disposed after job execution has been completed.

This allows to have single instance per job execution as well as deterministic disposal of resources.

Install package via Nuget: install-package Autofac.Extras.Quartz

Build status

Stable Pre-release
Build Master branch Development branch
NuGet NuGet NuGet
CodeCov codecov codecov

Usage example

Autofac configuration for Quartz includes two steps:

  1. Scheduler registration
  2. Job registration

Scheduler registration

QuartzAutofacFactoryModule registers custom ISchedulerFactory and default instance of IScheduler in Autofac container. Both factory and schedulere are registered as singletones. Note: Is is important to resolve IScheduler from container, rather than using default one to get jobs resolved by Autofac.

Optionally custom Quartz configuration can be passed using ConfigurationProvider property. Provider is callback which returns settings using NameValueCollection.

Job scope configuration

Starting with version 7 QuartzAutofacFactoryModule provides a way to customize lifetime scope configuration for job. This can be done via JobScopeConfigurator parameter.

cb.Register(_ => new ScopedDependency("global"))
    .AsImplementedInterfaces()
    .SingleInstance();

cb.RegisterModule(new QuartzAutofacFactoryModule {
    JobScopeConfigurator = (builder, jobScopeTag) => {
        // override dependency for job scope
        builder.Register(_ => new ScopedDependency("job-local "+ DateTime.UtcNow.ToLongTimeString()))
            .AsImplementedInterfaces()
            .InstancePerMatchingLifetimeScope(jobScopeTag);

    }
});

See src/Samples/Shared/Bootstrap.cs for details.

Job registration

QuartzAutofacJobsModule scans given assemblies and registers all non-abstract implementors of IJob interface as transient instances.

internal static ContainerBuilder ConfigureContainer(ContainerBuilder cb)
{
	// 1) Register IScheduler
	cb.RegisterModule(new QuartzAutofacFactoryModule()); 
	// 2) Register jobs
	cb.RegisterModule(new QuartzAutofacJobsModule(typeof (CleanupExpiredAnnouncemetsJob).Assembly));
}

Starting Quartz

Make sure to start the scheduler after it was resolved from Autofac. E.g.

var scheduler = _container.Resolve<IScheduler>();
scheduler.Start();

Sample projects

TopShelf-based sample was removed since Topshelf.Quartz is not compatible with Quartz 3 as af now.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on Autofac.Extras.Quartz:

Package Downloads
Lauener.Core.Triggers

A easy to use Quartz implementation

TripleSix.Core

Package Description

HwApp.Quartz

HwApp Quartz & Quartzmin

SyWaterStandardLibrary

舜禹框架Core 3.0

Cogito.Quartz.Autofac

Provides utilites and extensions for Quartz and Autofac.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Autofac.Extras.Quartz:

Repository Stars
PlexRipper/PlexRipper
A cross-platform Plex media downloader that seamlessly adds media from other Plex servers to your own!
Version Downloads Last Updated
10.0.0 277,142 3/7/2024
10.0.0-alpha0007 137 3/5/2024
10.0.0-alpha0006 156 3/4/2024
9.0.0 227,346 3/27/2023
8.2.0 71,475 1/30/2023
8.2.0-alpha0001 227 1/30/2023
8.1.0 2,518 1/24/2023
8.1.0-alpha0003 255 12/22/2022
8.1.0-alpha0002 227 12/22/2022
8.0.0 150,371 6/3/2022
7.4.0-alpha0007 297 6/2/2022
7.4.0-alpha0005 11,044 5/17/2022
7.4.0-alpha0002 247 5/8/2022
7.3.0 194,503 10/28/2021
7.3.0-alpha0009 342 10/28/2021
7.2.0 50,781 8/2/2021
7.2.0-alpha0006 354 8/1/2021
7.1.0 68,162 4/25/2021
7.1.0-alpha0011 360 8/1/2021
7.1.0-alpha0010 391 8/1/2021
7.1.0-alpha0009 411 8/1/2021
7.1.0-alpha0008 363 6/20/2021
7.1.0-alpha0006 358 4/30/2021
7.1.0-alpha0004 362 4/24/2021
7.1.0-alpha0003 405 4/24/2021
7.1.0-alpha0002 356 4/19/2021
7.1.0-alpha0001 340 4/19/2021
7.0.0 219,670 2/16/2021
7.0.0-beta0001 366 2/14/2021
7.0.0-alpha0024 375 2/14/2021
7.0.0-alpha0023 385 2/9/2021
6.3.0-alpha0001 375 2/9/2021
6.2.0 15,301 1/29/2021
6.2.0-beta0001 369 1/29/2021
6.2.0-alpha0008 384 1/28/2021
6.2.0-alpha0001 495 1/10/2021
6.1.0 17,943 1/10/2021
6.1.0-beta0001 413 1/4/2021
6.0.1 47,613 10/21/2020
6.0.1-beta0001 521 10/21/2020
6.0.0 74,696 10/9/2020
6.0.0-beta0001 487 10/9/2020
6.0.0-alpha0041 501 10/7/2020
6.0.0-alpha0039 533 10/7/2020
5.4.0 43,455 10/7/2020
5.4.0-beta0001 490 10/4/2020
5.4.0-alpha0007 479 10/4/2020
5.4.0-alpha0001 714 8/6/2020
5.3.0 41,532 8/6/2020
5.3.0-beta0001 510 8/6/2020
5.3.0-alpha0009 514 8/6/2020
5.3.0-alpha0008 575 7/27/2020
5.3.0-alpha0007 582 7/8/2020
5.3.0-alpha0001 1,126 5/19/2020
5.2.0 114,749 5/19/2020
5.2.0-beta0001 554 5/19/2020
5.2.0-alpha0023 551 5/19/2020
5.2.0-alpha0021 822 2/17/2020
5.1.0 166,127 2/17/2020
5.1.0-alpha0015 553 2/17/2020
5.1.0-alpha0014 616 2/8/2020
5.1.0-alpha0005 625 1/30/2020
5.0.0 28,128 1/30/2020
5.0.0-beta0001 638 1/30/2020
5.0.0-alpha0064 557 1/30/2020
4.7.0-alpha0013 3,316 1/29/2020
4.7.0-alpha0009 581 1/27/2020
4.7.0-alpha0007 2,092 11/18/2019
4.7.0-alpha0006 582 11/17/2019
4.7.0-alpha0005 614 11/8/2019
4.7.0-alpha0004 1,244 9/2/2019
4.6.0 234,814 9/2/2019
4.6.0-beta0001 635 9/1/2019
4.6.0-alpha0036 622 9/1/2019
4.6.0-alpha0034 610 9/1/2019
4.6.0-alpha0033 599 9/1/2019
4.6.0-alpha0028 679 7/13/2019
4.6.0-alpha0026 639 7/13/2019
4.6.0-alpha0024 612 7/6/2019
4.6.0-alpha0022 617 7/6/2019
4.6.0-alpha0018 622 7/6/2019
4.6.0-alpha0008 777 5/8/2019
4.6.0-alpha0005 641 5/8/2019
4.6.0-alpha0003 672 5/8/2019
4.6.0-alpha0001 798 3/10/2019
4.5.1 178,367 5/8/2019
4.5.1-beta0001 669 5/8/2019
4.5.0 110,350 3/9/2019
4.5.0-beta0001 675 3/9/2019
4.5.0-alpha0008 644 3/9/2019
4.5.0-alpha0007 674 3/8/2019
4.5.0-alpha0005 700 2/25/2019
4.5.0-alpha0003 925 2/11/2019
4.5.0-alpha0002 746 1/28/2019
4.5.0-alpha0001 761 1/27/2019
4.4.0 111,051 1/27/2019
4.4.0-beta0001 789 1/27/2019
4.4.0-alpha0014 1,157 9/29/2018
4.4.0-alpha0013 870 9/29/2018
4.4.0-alpha0012 849 9/29/2018
4.4.0-alpha0002 928 9/23/2018
4.4.0-alpha0001 863 9/19/2018
4.3.0 158,784 9/29/2018
4.3.0-beta0001 903 9/26/2018
4.3.0-alpha0008 1,650 7/11/2018
4.3.0-alpha0007 1,210 7/7/2018
4.3.0-alpha0006 1,211 7/7/2018
4.3.0-alpha0005 1,220 7/1/2018
4.2.0 44,417 7/1/2018
4.2.0-beta0001 1,196 6/30/2018
4.2.0-alpha0004 1,194 7/1/2018
4.2.0-alpha0003 1,623 5/13/2018
4.2.0-alpha0002 1,252 5/13/2018
4.2.0-alpha0001 1,262 5/13/2018
4.1.2 1,519 6/30/2018
4.1.1 63,335 5/13/2018
4.1.0-beta0004 1,253 5/13/2018
4.1.0-beta0001 1,271 5/13/2018
4.1.0-alpha0016 1,585 4/14/2018
4.0.0 69,685 1/14/2018
4.0.0-beta0007 1,370 1/14/2018
4.0.0-beta0006 1,290 1/13/2018
4.0.0-beta0001 1,237 1/13/2018
3.5.0 111,354 4/14/2018
3.5.0-unstable0012 1,379 1/5/2018
3.5.0-unstable0010 1,585 8/15/2017
3.5.0-unstable0004 1,130 8/1/2017
3.5.0-unstable0003 1,144 7/25/2017
3.5.0-unstable0002 1,179 6/21/2017
3.5.0-unstable0001 1,236 6/15/2017
3.5.0-beta0001 1,432 4/14/2018
3.4.0 128,819 5/5/2017
3.4.0-unstable0009 1,188 4/5/2017
3.4.0-unstable0008 1,161 4/5/2017
3.4.0-unstable0007 1,183 4/5/2017
3.4.0-unstable0006 1,130 4/5/2017
3.4.0-unstable0004 1,261 2/15/2017
3.4.0-unstable0001 1,251 12/4/2016
3.4.0-ci0000 1,132 4/5/2017
3.3.0 75,667 11/1/2016
3.3.0-unstable0001 1,263 11/1/2016
3.3.0-unstable0000 1,151 10/10/2016
3.2.0 8,568 10/10/2016
3.2.0-beta0001 1,154 10/10/2016
3.1.0 57,487 8/25/2016
3.1.0-unstable0022 1,148 10/9/2016
3.1.0-unstable0021 1,180 10/9/2016
3.0.0-unstable0020 1,270 7/17/2016
3.0.0-unstable0017 1,232 8/24/2016
3.0.0-unstable0013 1,200 7/17/2016
3.0.0-unstable0012 1,211 7/17/2016
3.0.0-unstable0011 1,196 7/17/2016
3.0.0-beta-1 1,284 7/4/2016
3.0.0-alpha0014 1,150 7/20/2016
2.2.0-unstable0012 1,247 7/19/2016
2.1.1 19,452 7/16/2016
2.1.0 38,862 4/8/2016
2.0.0.1 1,843 4/6/2016
1.7.0 44,185 10/29/2015
1.6.0 3,483 10/25/2015
1.5.1 20,266 7/14/2015
1.5.0 1,558 7/14/2015
1.4.0 5,130 6/12/2015
1.3.0 17,078 2/1/2015
1.2.0 3,880 1/26/2015
1.1.1 6,596 11/15/2014
1.1.0 10,384 7/13/2014
1.0.0 2,966 7/2/2014
0.11.0 2,117 5/18/2014
0.10.0 2,005 4/9/2014
0.9.0 5,931 4/7/2014