Sundial 2.51.0

dotnet add package Sundial --version 2.51.0
NuGet\Install-Package Sundial -Version 2.51.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.51.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sundial --version 2.51.0
#r "nuget: Sundial, 2.51.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.
// Install Sundial as a Cake Addin
#addin nuget:?package=Sundial&version=2.51.0

// Install Sundial as a Cake Tool
#tool nuget:?package=Sundial&version=2.51.0

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 is compatible. 
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

Package Description

GitHub repositories (1)

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

Repository Stars
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.51.0 64 4/30/2024
2.50.0 60 4/28/2024
2.49.0 66 4/23/2024
2.48.0 61 4/23/2024
2.47.0 48 4/22/2024
2.46.0 58 4/19/2024
2.45.0 63 4/11/2024
2.44.0 63 4/11/2024
2.43.0 55 4/10/2024
2.42.0 60 4/9/2024
2.41.0 55 4/9/2024
2.40.0 65 3/29/2024
2.39.0 67 3/27/2024
2.38.0 64 3/25/2024
2.37.0 119 3/21/2024
2.36.0 137 3/7/2024
2.35.0 94 3/7/2024
2.34.0 279 1/16/2024
2.33.0 149 1/10/2024
2.32.0 189 1/1/2024
2.31.0 520 12/2/2023
2.30.0 137 12/1/2023
2.29.0 156 11/24/2023
2.28.0 315 11/14/2023
2.27.0 117 11/11/2023
2.26.0 327 10/9/2023
2.25.0 714 7/6/2023
2.24.0 306 6/28/2023
2.23.0 121 6/27/2023
2.22.0 176 6/25/2023
2.21.0 121 6/24/2023
2.20.0 120 6/24/2023
2.19.0 127 6/21/2023
2.18.0 115 6/21/2023
2.17.0 99 6/21/2023
2.16.0 195 6/14/2023
2.15.0 302 5/17/2023
2.13.0 185 5/8/2023
2.12.0 152 5/3/2023
2.11.0 160 4/29/2023
2.10.4 166 4/25/2023
2.10.3 132 4/25/2023
2.10.2 157 4/24/2023
2.10.1 171 4/21/2023
2.10.0 361 4/12/2023
2.9.9 182 4/11/2023
2.9.8 228 4/6/2023
2.9.7 185 4/5/2023
2.9.6 176 4/4/2023
2.9.5 165 4/4/2023
2.9.4 317 3/31/2023
2.9.3 225 3/28/2023
2.9.2 278 3/21/2023
2.9.1 212 3/20/2023
2.9.0 217 3/17/2023
2.8.9 222 3/16/2023
2.8.8 206 3/15/2023
2.8.7 124 3/15/2023
2.8.6 198 3/14/2023
2.8.5 210 3/13/2023
2.8.4 210 3/12/2023
2.8.3 213 3/9/2023
2.8.2 122 3/9/2023
2.8.1 291 3/6/2023
2.8.0 270 2/22/2023
2.7.3 459 2/8/2023
2.7.2 479 2/2/2023
2.7.1 428 1/30/2023
2.7.0 488 1/12/2023
2.6.9 436 1/11/2023
2.6.8 453 1/9/2023
2.6.7 445 1/8/2023
2.6.6 472 1/5/2023
2.6.5 443 1/5/2023
2.6.4 453 1/4/2023
2.6.3 493 1/3/2023
2.6.2 439 1/3/2023
2.6.1 463 1/3/2023
2.6.0 471 1/1/2023
2.5.9 508 12/30/2022
2.5.8 381 12/22/2022
2.5.7 347 12/21/2022
2.5.6 410 12/14/2022
2.5.5 369 12/12/2022
2.5.4 367 12/9/2022
2.5.3 380 12/9/2022
2.5.2 388 12/7/2022
2.5.1 417 12/6/2022
2.5.0 388 12/5/2022
2.4.4 438 12/1/2022
2.4.3 417 12/1/2022
2.4.2 426 11/30/2022
2.4.1 418 11/30/2022
2.4.0 434 11/30/2022
2.3.1 415 11/30/2022
2.3.0 421 11/29/2022
2.2.4 419 11/29/2022
2.2.3 416 11/29/2022
2.2.2 443 11/28/2022
2.2.1 444 11/27/2022
2.2.0 442 11/26/2022
2.1.2 433 11/26/2022
2.1.1 431 11/25/2022
2.1.0 442 11/25/2022
2.0.5 442 11/25/2022
2.0.4 433 11/24/2022
2.0.3 453 11/24/2022
2.0.2 438 11/24/2022
2.0.1 440 11/23/2022
2.0.0 456 11/23/2022
1.0.1 688 11/16/2021
1.0.0 612 11/16/2021
0.0.1 595 11/4/2021