Autofac.Extras.Quartz 11.1.0-alpha0002

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: dotnet add 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.

No packages depend on Autofac.Extras.Quartz.

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
11.1.0-alpha0002 37 03/06/2026
11.0.0 33 03/06/2026
10.1.0-alpha0007 32 02/10/2026
10.0.0 38 12/13/2025
10.0.0-alpha0007 44 12/11/2025
10.0.0-alpha0006 39 12/20/2025
9.0.0 28 12/12/2025
8.2.0 30 12/13/2025
8.2.0-alpha0001 30 12/14/2025
8.1.0 27 12/16/2025
8.1.0-alpha0003 30 12/14/2025
8.1.0-alpha0002 31 12/20/2025
8.0.0 32 12/13/2025
7.4.0-alpha0007 28 12/14/2025
7.4.0-alpha0005 31 12/20/2025
7.4.0-alpha0002 35 12/14/2025
7.3.0 33 12/14/2025
7.3.0-alpha0009 38 12/15/2025
7.2.0 32 12/14/2025
7.2.0-alpha0006 33 12/20/2025
7.1.0 29 01/09/2026
7.1.0-alpha0011 32 12/15/2025
7.1.0-alpha0010 40 12/10/2025
7.1.0-alpha0009 30 12/15/2025
7.1.0-alpha0008 34 12/20/2025
7.1.0-alpha0006 27 12/12/2025
7.1.0-alpha0004 35 12/17/2025
7.1.0-alpha0003 32 12/20/2025
7.1.0-alpha0002 31 12/12/2025
7.1.0-alpha0001 29 12/19/2025
7.0.0 28 12/13/2025
7.0.0-beta0001 31 12/15/2025
7.0.0-alpha0024 34 12/13/2025
7.0.0-alpha0023 34 12/14/2025
6.3.0-alpha0001 33 12/14/2025
6.2.0 29 12/12/2025
6.2.0-beta0001 34 12/09/2025
6.2.0-alpha0008 30 12/16/2025
6.2.0-alpha0001 31 12/17/2025
6.1.0 31 12/14/2025
6.1.0-beta0001 34 12/10/2025
6.0.1 32 12/13/2025
6.0.1-beta0001 27 12/10/2025
6.0.0 31 12/15/2025
6.0.0-beta0001 30 12/10/2025
6.0.0-alpha0041 31 12/12/2025
6.0.0-alpha0039 29 12/20/2025
5.4.0 30 12/22/2025
5.4.0-beta0001 37 12/15/2025
5.4.0-alpha0007 29 12/13/2025
5.4.0-alpha0001 27 12/14/2025
5.3.0 36 12/12/2025
5.3.0-beta0001 38 12/13/2025
5.3.0-alpha0009 34 12/20/2025
5.3.0-alpha0008 29 12/20/2025
5.3.0-alpha0007 33 12/11/2025
5.3.0-alpha0001 28 12/15/2025
5.2.0 33 12/13/2025
5.2.0-beta0001 37 12/13/2025
5.2.0-alpha0023 29 12/20/2025
5.2.0-alpha0021 33 12/17/2025
5.1.0 28 12/14/2025
5.1.0-alpha0015 32 12/14/2025
5.1.0-alpha0014 33 12/15/2025
5.1.0-alpha0005 31 12/20/2025
5.0.0 31 12/12/2025
5.0.0-beta0001 37 12/15/2025
5.0.0-alpha0064 35 12/11/2025
4.7.0-alpha0013 37 12/11/2025
4.7.0-alpha0009 31 12/12/2025
4.7.0-alpha0007 34 12/14/2025
4.7.0-alpha0006 33 12/20/2025
4.7.0-alpha0005 33 12/11/2025
4.7.0-alpha0004 29 12/20/2025
4.6.0 35 12/15/2025
4.6.0-beta0001 32 12/11/2025
4.6.0-alpha0036 31 12/15/2025
4.6.0-alpha0034 29 12/14/2025
4.6.0-alpha0033 36 12/14/2025
4.6.0-alpha0028 38 12/14/2025
4.6.0-alpha0026 35 12/12/2025
4.6.0-alpha0024 30 12/13/2025
4.6.0-alpha0022 35 12/14/2025
4.6.0-alpha0018 39 12/15/2025
4.6.0-alpha0008 26 12/20/2025
4.6.0-alpha0005 29 12/20/2025
4.6.0-alpha0003 27 12/20/2025
4.6.0-alpha0001 40 12/15/2025
4.5.1 35 12/13/2025
4.5.1-beta0001 33 12/15/2025
4.5.0 27 12/13/2025
4.5.0-beta0001 30 12/20/2025
4.5.0-alpha0008 28 12/20/2025
4.5.0-alpha0007 30 12/12/2025
4.5.0-alpha0005 28 12/15/2025
4.5.0-alpha0003 32 12/10/2025
4.5.0-alpha0002 28 12/14/2025
4.5.0-alpha0001 28 12/15/2025
4.4.0 29 12/20/2025
4.4.0-beta0001 36 12/15/2025
4.4.0-alpha0014 32 12/20/2025
4.4.0-alpha0013 23 12/14/2025
4.4.0-alpha0012 29 12/20/2025
4.4.0-alpha0002 25 12/20/2025
4.4.0-alpha0001 38 12/15/2025
4.3.0 31 12/23/2025
4.3.0-beta0001 32 12/15/2025
4.3.0-alpha0008 34 12/15/2025
4.3.0-alpha0007 36 12/15/2025
4.3.0-alpha0006 34 12/12/2025
4.3.0-alpha0005 34 12/13/2025
4.2.0 33 12/22/2025
4.2.0-beta0001 27 12/13/2025
4.2.0-alpha0004 26 12/13/2025
4.2.0-alpha0003 30 12/14/2025
4.2.0-alpha0002 31 12/15/2025
4.2.0-alpha0001 31 12/15/2025
4.1.2 30 12/13/2025
4.1.1 30 12/12/2025
4.1.0-beta0004 37 12/15/2025
4.1.0-beta0001 36 12/13/2025
4.1.0-alpha0016 35 12/10/2025
4.0.0 36 12/10/2025
4.0.0-beta0007 32 12/13/2025
4.0.0-beta0006 29 12/11/2025
4.0.0-beta0001 24 12/15/2025
3.5.0 30 12/13/2025
3.5.0-unstable0012 30 12/15/2025
3.5.0-unstable0010 32 12/15/2025
3.5.0-unstable0004 31 12/20/2025
3.5.0-unstable0003 30 12/20/2025
3.5.0-unstable0002 29 12/20/2025
3.5.0-unstable0001 33 12/14/2025
3.5.0-beta0001 31 12/15/2025
3.4.0 29 12/24/2025
3.4.0-unstable0009 35 12/15/2025
3.4.0-unstable0008 27 12/15/2025
3.4.0-unstable0007 31 12/15/2025
3.4.0-unstable0006 34 12/20/2025
3.4.0-unstable0004 36 12/18/2025
3.4.0-unstable0001 32 12/14/2025
3.4.0-ci0000 30 12/20/2025
3.3.0 28 12/12/2025
3.3.0-unstable0001 26 12/20/2025
3.3.0-unstable0000 30 12/15/2025
3.2.0 30 12/13/2025
3.2.0-beta0001 32 12/15/2025
3.1.0 30 12/14/2025
3.1.0-unstable0022 34 12/15/2025
3.1.0-unstable0021 33 12/20/2025
3.0.0-unstable0020 32 12/15/2025
3.0.0-unstable0017 34 12/20/2025
3.0.0-unstable0013 33 12/20/2025
3.0.0-unstable0012 28 12/13/2025
3.0.0-unstable0011 35 12/09/2025
3.0.0-beta-1 28 12/20/2025
3.0.0-alpha0014 40 12/20/2025
2.2.0-unstable0012 29 12/20/2025
2.1.1 32 12/20/2025
2.1.0 32 12/10/2025
2.0.0.1 30 12/15/2025
1.7.0 32 12/11/2025
1.6.0 35 12/11/2025
1.5.1 33 12/10/2025
1.5.0 40 12/11/2025
1.4.0 33 12/13/2025
1.3.0 33 12/11/2025
1.2.0 31 12/11/2025
1.1.1 28 12/12/2025
1.1.0 34 12/11/2025
1.0.0 37 12/12/2025
0.11.0 28 12/12/2025
0.10.0 34 12/11/2025
0.9.0 37 12/12/2025