Sundial 2.23.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sundial --version 2.23.0
                    
NuGet\Install-Package Sundial -Version 2.23.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="Sundial" Version="2.23.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sundial" Version="2.23.0" />
                    
Directory.Packages.props
<PackageReference Include="Sundial" />
                    
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 Sundial --version 2.23.0
                    
#r "nuget: Sundial, 2.23.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.
#:package Sundial@2.23.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Sundial&version=2.23.0
                    
Install as a Cake Addin
#tool nuget:?package=Sundial&version=2.23.0
                    
Install as a Cake Tool

Sundial

license nuget dotNET China

.NET 功能齐全的开源分布式作业调度系统,可从最小的应用程序到大型企业系统使用。

Sundial.drawio

安装

dotnet add package Sundial

快速入门

我们在主页上有不少例子,这是让您入门的第一个:

  1. 定义作业,并实现 IJob 接口:
public class MyJob : IJob
{
    private readonly ILogger<MyJob> _logger;
    public MyJob(ILogger<MyJob> logger)
    {
        _logger = logger;
    }

    public Task ExecuteAsync(JobExecutingContext context, CancellationToken stoppingToken)
    {
        _logger.LogInformation(context.ToString());
        return Task.CompletedTask;
    }
}
  1. Startup.cs 注册 AddSchedule 服务和作业:
services.AddSchedule(options =>
{
    options.AddJob<MyJob>(Triggers.PeriodSeconds(5)); // 5s 执行一次
});
  1. 运行项目:
info: 2022-12-05 19:32:56.3835407 +08:00 星期一 L System.Logging.ScheduleService[0] #1
      Schedule hosted service is running.
info: 2022-12-05 19:32:56.3913451 +08:00 星期一 L System.Logging.ScheduleService[0] #1
      Schedule hosted service is preloading...
info: 2022-12-05 19:32:56.4322887 +08:00 星期一 L System.Logging.ScheduleService[0] #1
      The <job1_trigger1> trigger for scheduler of <job1> successfully appended to the schedule.
info: 2022-12-05 19:32:56.4347959 +08:00 星期一 L System.Logging.ScheduleService[0] #1
      The scheduler of <job1> successfully appended to the schedule.
warn: 2022-12-05 19:32:56.4504555 +08:00 星期一 L System.Logging.ScheduleService[0] #1
      Schedule hosted service preload completed, and a total of <1> schedulers are appended.
info: 2022-12-05 19:33:01.5100177 +08:00 星期一 L MyJob[0] #13
+     <job1> [C] <job1 job1_trigger1> 5s 1ts 2022-12-05 19:33:01.395 -> 2022-12-05 19:33:06.428
info: 2022-12-05 19:33:06.4676792 +08:00 星期一 L MyJob[0] #13
+     <job1> [C] <job1 job1_trigger1> 5s 2ts 2022-12-05 19:33:06.428 -> 2022-12-05 19:33:11.435
info: 2022-12-05 19:33:11.4460946 +08:00 星期一 L MyJob[0] #16
+     <job1> [C] <job1 job1_trigger1> 5s 3ts 2022-12-05 19:33:11.435 -> 2022-12-05 19:33:16.412

JobExecutionContext 重写了 ToString() 方法并提供以下几种格式:

# 持续运行格式
<作业Id> 作业描述 [并行C/串行S] <作业Id 触发器Id> 触发器字符串 触发器描述 触发次数ts 触发时间 -> 下一次触发时间

# 触发停止格式
<作业Id> 作业描述 [并行C/串行S] <作业Id 触发器Id> 触发器字符串 触发器描述 触发次数ts 触发时间 [触发器终止状态]

更多文档

文档

您可以在主页找到 Sundial 文档。

贡献

该存储库的主要目的是继续发展 Sundial 核心,使其更快、更易于使用。Sundial 的开发在 Gitee 上公开进行,我们感谢社区贡献错误修复和改进。

许可证

Sundial 采用 MIT 开源许可证。

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Sundial:

Package Downloads
Sundial.Dashboard

Sundial Dashboard 看板

YF.WL.Logger

日志

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Sundial:

Repository Stars
YSGStudyHards/DotNetExercises
⚔【DotNetGuide专栏C#/.NET/.NET Core编程技巧练习集】C#/.NET/.NET Core编程常用语法、算法、技巧、中间件、类库、工作业务实操练习集,配套详细的文章教程和代码示例,助力快速掌握C#/.NET/.NET Core中各种编程常用语法、算法、技巧、中间件、类库、工作业务实操等等。
liuhll/silky
The Silky framework is designed to help developers quickly build a microservice development framework through simple code and configuration under the .net platform.
Version Downloads Last Updated
2.101.0 122 10/15/2025
2.100.0 215 9/22/2025
2.99.0 101 9/12/2025
2.98.0 147 9/10/2025
2.97.0 154 8/21/2025
2.96.0 152 8/13/2025
2.95.0 306 8/7/2025
2.94.0 317 7/27/2025 2.94.0 is deprecated because it is no longer maintained and has critical bugs.
2.93.0 697 7/23/2025 2.93.0 is deprecated because it is no longer maintained and has critical bugs.
2.92.0 694 7/23/2025 2.92.0 is deprecated because it is no longer maintained and has critical bugs.
2.91.0 316 7/3/2025 2.91.0 is deprecated because it is no longer maintained and has critical bugs.
2.90.0 313 7/3/2025 2.90.0 is deprecated because it is no longer maintained and has critical bugs.
2.80.0 377 6/25/2025 2.80.0 is deprecated because it is no longer maintained and has critical bugs.
2.79.0 367 6/16/2025 2.79.0 is deprecated because it is no longer maintained and has critical bugs.
2.78.0 364 6/14/2025 2.78.0 is deprecated because it is no longer maintained and has critical bugs.
2.77.0 367 6/5/2025 2.77.0 is deprecated because it is no longer maintained and has critical bugs.
2.76.0 366 6/2/2025 2.76.0 is deprecated because it is no longer maintained and has critical bugs.
2.75.0 326 5/31/2025 2.75.0 is deprecated because it is no longer maintained and has critical bugs.
2.74.0 369 5/26/2025 2.74.0 is deprecated because it is no longer maintained and has critical bugs.
2.73.0 293 5/24/2025 2.73.0 is deprecated because it is no longer maintained and has critical bugs.
2.72.0 238 5/21/2025 2.72.0 is deprecated because it is no longer maintained and has critical bugs.
2.71.0 194 5/18/2025 2.71.0 is deprecated because it is no longer maintained and has critical bugs.
2.70.0 178 5/17/2025 2.70.0 is deprecated because it is no longer maintained and has critical bugs.
2.69.0 303 4/23/2025 2.69.0 is deprecated because it is no longer maintained and has critical bugs.
2.68.0 343 2/11/2025 2.68.0 is deprecated because it is no longer maintained and has critical bugs.
2.67.0 255 2/7/2025 2.67.0 is deprecated because it is no longer maintained and has critical bugs.
2.66.0 431 11/13/2024 2.66.0 is deprecated because it is no longer maintained and has critical bugs.
2.65.0 205 11/13/2024 2.65.0 is deprecated because it is no longer maintained and has critical bugs.
2.64.0 711 8/11/2024 2.64.0 is deprecated because it is no longer maintained and has critical bugs.
2.63.0 246 7/18/2024 2.63.0 is deprecated because it is no longer maintained and has critical bugs.
2.62.0 172 7/18/2024 2.62.0 is deprecated because it is no longer maintained and has critical bugs.
2.61.0 209 7/10/2024 2.61.0 is deprecated because it is no longer maintained and has critical bugs.
2.60.0 239 7/3/2024 2.60.0 is deprecated because it is no longer maintained and has critical bugs.
2.59.0 215 6/21/2024 2.59.0 is deprecated because it is no longer maintained and has critical bugs.
2.58.0 295 5/28/2024 2.58.0 is deprecated because it is no longer maintained and has critical bugs.
2.57.0 271 5/20/2024 2.57.0 is deprecated because it is no longer maintained and has critical bugs.
2.56.0 196 5/14/2024 2.56.0 is deprecated because it is no longer maintained and has critical bugs.
2.55.0 321 5/10/2024 2.55.0 is deprecated because it is no longer maintained and has critical bugs.
2.54.0 318 5/8/2024 2.54.0 is deprecated because it is no longer maintained and has critical bugs.
2.53.0 170 5/7/2024 2.53.0 is deprecated because it is no longer maintained and has critical bugs.
2.52.0 183 5/7/2024 2.52.0 is deprecated because it is no longer maintained and has critical bugs.
2.51.0 183 4/30/2024 2.51.0 is deprecated because it is no longer maintained and has critical bugs.
2.50.0 184 4/28/2024 2.50.0 is deprecated because it is no longer maintained and has critical bugs.
2.49.0 184 4/23/2024 2.49.0 is deprecated because it is no longer maintained and has critical bugs.
2.48.0 180 4/23/2024 2.48.0 is deprecated because it is no longer maintained and has critical bugs.
2.47.0 166 4/22/2024 2.47.0 is deprecated because it is no longer maintained and has critical bugs.
2.46.0 197 4/19/2024 2.46.0 is deprecated because it is no longer maintained and has critical bugs.
2.45.0 174 4/11/2024 2.45.0 is deprecated because it is no longer maintained and has critical bugs.
2.44.0 173 4/11/2024 2.44.0 is deprecated because it is no longer maintained and has critical bugs.
2.43.0 188 4/10/2024 2.43.0 is deprecated because it is no longer maintained and has critical bugs.
2.42.0 172 4/9/2024 2.42.0 is deprecated because it is no longer maintained and has critical bugs.
2.41.0 190 4/9/2024 2.41.0 is deprecated because it is no longer maintained and has critical bugs.
2.40.0 174 3/29/2024 2.40.0 is deprecated because it is no longer maintained and has critical bugs.
2.39.0 172 3/27/2024 2.39.0 is deprecated because it is no longer maintained and has critical bugs.
2.38.0 172 3/25/2024 2.38.0 is deprecated because it is no longer maintained and has critical bugs.
2.37.0 254 3/21/2024 2.37.0 is deprecated because it is no longer maintained and has critical bugs.
2.36.0 530 3/7/2024 2.36.0 is deprecated because it is no longer maintained and has critical bugs.
2.35.0 228 3/7/2024 2.35.0 is deprecated because it is no longer maintained and has critical bugs.
2.34.0 560 1/16/2024 2.34.0 is deprecated because it is no longer maintained and has critical bugs.
2.33.0 285 1/10/2024 2.33.0 is deprecated because it is no longer maintained and has critical bugs.
2.32.0 336 1/1/2024 2.32.0 is deprecated because it is no longer maintained and has critical bugs.
2.31.0 738 12/2/2023 2.31.0 is deprecated because it is no longer maintained and has critical bugs.
2.30.0 253 12/1/2023 2.30.0 is deprecated because it is no longer maintained and has critical bugs.
2.29.0 266 11/24/2023 2.29.0 is deprecated because it is no longer maintained and has critical bugs.
2.28.0 463 11/14/2023 2.28.0 is deprecated because it is no longer maintained and has critical bugs.
2.27.0 225 11/11/2023 2.27.0 is deprecated because it is no longer maintained and has critical bugs.
2.26.0 503 10/9/2023 2.26.0 is deprecated because it is no longer maintained and has critical bugs.
2.25.0 1,485 7/6/2023 2.25.0 is deprecated because it is no longer maintained and has critical bugs.
2.24.0 606 6/28/2023 2.24.0 is deprecated because it is no longer maintained and has critical bugs.
2.23.0 247 6/27/2023 2.23.0 is deprecated because it is no longer maintained and has critical bugs.
2.22.0 309 6/25/2023 2.22.0 is deprecated because it is no longer maintained and has critical bugs.
2.21.0 245 6/24/2023 2.21.0 is deprecated because it is no longer maintained and has critical bugs.
2.20.0 233 6/24/2023 2.20.0 is deprecated because it is no longer maintained and has critical bugs.
2.19.0 264 6/21/2023 2.19.0 is deprecated because it is no longer maintained and has critical bugs.
2.18.0 266 6/21/2023 2.18.0 is deprecated because it is no longer maintained and has critical bugs.
2.17.0 212 6/21/2023 2.17.0 is deprecated because it is no longer maintained and has critical bugs.
2.16.0 361 6/14/2023 2.16.0 is deprecated because it is no longer maintained and has critical bugs.
2.15.0 472 5/17/2023 2.15.0 is deprecated because it is no longer maintained and has critical bugs.
2.13.0 334 5/8/2023 2.13.0 is deprecated because it is no longer maintained and has critical bugs.
2.12.0 299 5/3/2023 2.12.0 is deprecated because it is no longer maintained and has critical bugs.
2.11.0 305 4/29/2023 2.11.0 is deprecated because it is no longer maintained and has critical bugs.
2.10.4 314 4/25/2023 2.10.4 is deprecated because it is no longer maintained and has critical bugs.
2.10.3 270 4/25/2023 2.10.3 is deprecated because it is no longer maintained and has critical bugs.
2.10.2 297 4/24/2023 2.10.2 is deprecated because it is no longer maintained and has critical bugs.
2.10.1 299 4/21/2023 2.10.1 is deprecated because it is no longer maintained and has critical bugs.
2.10.0 528 4/12/2023 2.10.0 is deprecated because it is no longer maintained and has critical bugs.
2.9.9 372 4/11/2023 2.9.9 is deprecated because it is no longer maintained and has critical bugs.
2.9.8 431 4/6/2023 2.9.8 is deprecated because it is no longer maintained and has critical bugs.
2.9.7 376 4/5/2023 2.9.7 is deprecated because it is no longer maintained and has critical bugs.
2.9.6 362 4/4/2023 2.9.6 is deprecated because it is no longer maintained and has critical bugs.
2.9.5 347 4/4/2023 2.9.5 is deprecated because it is no longer maintained and has critical bugs.
2.9.4 699 3/31/2023 2.9.4 is deprecated because it is no longer maintained and has critical bugs.
2.9.3 419 3/28/2023 2.9.3 is deprecated because it is no longer maintained and has critical bugs.
2.9.2 467 3/21/2023 2.9.2 is deprecated because it is no longer maintained and has critical bugs.
2.9.1 388 3/20/2023 2.9.1 is deprecated because it is no longer maintained and has critical bugs.
2.9.0 411 3/17/2023 2.9.0 is deprecated because it is no longer maintained and has critical bugs.
2.8.9 419 3/16/2023 2.8.9 is deprecated because it is no longer maintained and has critical bugs.
2.8.8 403 3/15/2023 2.8.8 is deprecated because it is no longer maintained and has critical bugs.
2.8.7 293 3/15/2023 2.8.7 is deprecated because it is no longer maintained and has critical bugs.
2.8.6 407 3/14/2023 2.8.6 is deprecated because it is no longer maintained and has critical bugs.
2.8.5 406 3/13/2023 2.8.5 is deprecated because it is no longer maintained and has critical bugs.
2.8.4 400 3/12/2023 2.8.4 is deprecated because it is no longer maintained and has critical bugs.
2.8.3 401 3/9/2023 2.8.3 is deprecated because it is no longer maintained and has critical bugs.
2.8.2 286 3/9/2023 2.8.2 is deprecated because it is no longer maintained and has critical bugs.
2.8.1 504 3/6/2023 2.8.1 is deprecated because it is no longer maintained and has critical bugs.
2.8.0 462 2/22/2023 2.8.0 is deprecated because it is no longer maintained and has critical bugs.
2.7.3 735 2/8/2023 2.7.3 is deprecated because it is no longer maintained and has critical bugs.
2.7.2 766 2/2/2023 2.7.2 is deprecated because it is no longer maintained and has critical bugs.
2.7.1 686 1/30/2023 2.7.1 is deprecated because it is no longer maintained and has critical bugs.
2.7.0 746 1/12/2023 2.7.0 is deprecated because it is no longer maintained and has critical bugs.
2.6.9 704 1/11/2023 2.6.9 is deprecated because it is no longer maintained and has critical bugs.
2.6.8 717 1/9/2023 2.6.8 is deprecated because it is no longer maintained and has critical bugs.
2.6.7 710 1/8/2023 2.6.7 is deprecated because it is no longer maintained and has critical bugs.
2.6.6 737 1/5/2023 2.6.6 is deprecated because it is no longer maintained and has critical bugs.
2.6.5 711 1/5/2023 2.6.5 is deprecated because it is no longer maintained and has critical bugs.
2.6.4 716 1/4/2023 2.6.4 is deprecated because it is no longer maintained and has critical bugs.
2.6.3 806 1/3/2023 2.6.3 is deprecated because it is no longer maintained and has critical bugs.
2.6.2 707 1/3/2023 2.6.2 is deprecated because it is no longer maintained and has critical bugs.
2.6.1 721 1/3/2023 2.6.1 is deprecated because it is no longer maintained and has critical bugs.
2.6.0 735 1/1/2023 2.6.0 is deprecated because it is no longer maintained and has critical bugs.
2.5.9 805 12/30/2022 2.5.9 is deprecated because it is no longer maintained and has critical bugs.
2.5.8 631 12/22/2022 2.5.8 is deprecated because it is no longer maintained and has critical bugs.
2.5.7 588 12/21/2022 2.5.7 is deprecated because it is no longer maintained and has critical bugs.
2.5.6 763 12/14/2022 2.5.6 is deprecated because it is no longer maintained and has critical bugs.
2.5.5 620 12/12/2022 2.5.5 is deprecated because it is no longer maintained and has critical bugs.
2.5.4 624 12/9/2022 2.5.4 is deprecated because it is no longer maintained and has critical bugs.
2.5.3 689 12/9/2022 2.5.3 is deprecated because it is no longer maintained and has critical bugs.
2.5.2 699 12/7/2022 2.5.2 is deprecated because it is no longer maintained and has critical bugs.
2.5.1 732 12/6/2022 2.5.1 is deprecated because it is no longer maintained and has critical bugs.
2.5.0 694 12/5/2022 2.5.0 is deprecated because it is no longer maintained and has critical bugs.
2.4.4 785 12/1/2022 2.4.4 is deprecated because it is no longer maintained and has critical bugs.
2.4.3 787 12/1/2022 2.4.3 is deprecated because it is no longer maintained and has critical bugs.
2.4.2 776 11/30/2022 2.4.2 is deprecated because it is no longer maintained and has critical bugs.
2.4.1 784 11/30/2022 2.4.1 is deprecated because it is no longer maintained and has critical bugs.
2.4.0 804 11/30/2022 2.4.0 is deprecated because it is no longer maintained and has critical bugs.
2.3.1 782 11/30/2022 2.3.1 is deprecated because it is no longer maintained and has critical bugs.
2.3.0 790 11/29/2022 2.3.0 is deprecated because it is no longer maintained and has critical bugs.
2.2.4 783 11/29/2022 2.2.4 is deprecated because it is no longer maintained and has critical bugs.
2.2.3 776 11/29/2022 2.2.3 is deprecated because it is no longer maintained and has critical bugs.
2.2.2 802 11/28/2022 2.2.2 is deprecated because it is no longer maintained and has critical bugs.
2.2.1 812 11/27/2022 2.2.1 is deprecated because it is no longer maintained and has critical bugs.
2.2.0 810 11/26/2022 2.2.0 is deprecated because it is no longer maintained and has critical bugs.
2.1.2 799 11/26/2022 2.1.2 is deprecated because it is no longer maintained and has critical bugs.
2.1.1 776 11/25/2022 2.1.1 is deprecated because it is no longer maintained and has critical bugs.
2.1.0 791 11/25/2022 2.1.0 is deprecated because it is no longer maintained and has critical bugs.
2.0.5 802 11/25/2022 2.0.5 is deprecated because it is no longer maintained and has critical bugs.
2.0.4 803 11/24/2022 2.0.4 is deprecated because it is no longer maintained and has critical bugs.
2.0.3 834 11/24/2022 2.0.3 is deprecated because it is no longer maintained and has critical bugs.
2.0.2 813 11/24/2022 2.0.2 is deprecated because it is no longer maintained and has critical bugs.
2.0.1 801 11/23/2022 2.0.1 is deprecated because it is no longer maintained and has critical bugs.
2.0.0 838 11/23/2022 2.0.0 is deprecated because it is no longer maintained and has critical bugs.
1.0.1 1,073 11/16/2021 1.0.1 is deprecated because it is no longer maintained and has critical bugs.
1.0.0 988 11/16/2021 1.0.0 is deprecated because it is no longer maintained and has critical bugs.
0.0.1 986 11/4/2021 0.0.1 is deprecated because it is no longer maintained and has critical bugs.