📜  hangfire 列出重复作业 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:34.865000             🧑  作者: Mango

代码示例1
List recurringJobs = new List();
recurringJobs = Hangfire.JobStorage.Current.GetConnection().GetRecurringJobs().ToList();

GetRecurringJobs() is an extension method. You need to add “using Hangfire.Storage” (the most common element missing in any C# documentation!).