我正在努力使用MemoryStorage在简单的C#控制台应用程序上启动Hangfire作业。我想用Hangfire尝试一些东西,但我无法弄清楚如何配置它。
这是我的代码:
private static void Main(string[] args)
{
GlobalConfiguration.Configuration.UseMemoryStorage();
Hangfire.BackgroundJob.Enqueue(() => Console.WriteLine("fire!"));
Hangfire.RecurringJob.AddOrUpdate(() => Console.WriteLine("minute!"), Cron.Minutely);
Console.ReadKey();
}
我没有收到任何这些消息。
我也尝试使用JobStorage.Current = new MemoryStorage(new MemoryStorageOptions());
,但它没有改变任何内容。
答案 0 :(得分:2)
如果使用内存存储,则必须将Hangfire Server(即工作线程池)添加到声明存储的同一进程(存储只是ConcurrentDictionary
实例)。
在控制台应用中,它可能看起来像:
static void Main(string[] args)
{
GlobalConfiguration.Configuration.UseMemoryStorage();
BackgroundJob.Enqueue(() => Console.WriteLine("Easy!"));
using (new BackgroundJobServer())
{
Console.WriteLine("Hangfire Server started. Press ENTER to exit...");
Console.ReadLine();
}
}