yuzd / Hangfire.HttpJob

httpjob for Hangfire,restful api for Hangfire,job调度与业务分离
https://github.com/yuzd/Hangfire.HttpJob/wiki
MIT License
633 stars 186 forks source link

如何指定任务的执行队列 #37

Closed Seanxwy closed 4 years ago

Seanxwy commented 4 years ago

hangfire启动的时候创建了多个队列,而目前提交的计划任务都是在DEFAULT队列中执行,请问如何实现指定队列进行执行?

yuzd commented 4 years ago

首先在你hangfire启动的时候配置下队列 请参考:https://github.com/yuzd/Hangfire.HttpJob/blob/master/TestHangfire/Startup.cs#L99

然后在你添加的时候指定下队列名称: image

注意:无法在运行时新增队列

Seanxwy commented 4 years ago

Hangfire.HttpJob.Client.BackgroundJob 并没有QueueName,无法从指定