Hangfire.Atoms icon indicating copy to clipboard operation
Hangfire.Atoms copied to clipboard

Add queue selection support

Open sergeyshaykhullin opened this issue 5 years ago • 1 comments

jobClient.Enqueue("test", builder =>
{
	for (int i = 0; i < 10; i++)
	{
                // here
		builder.Enqueue<ITestJobs>(t => t.TestMethod(), "queue");
	}
// and/or here
}, "queue");

AtomBuilder.cs image

sergeyshaykhullin avatar Jun 21 '20 11:06 sergeyshaykhullin

@ahydrax I created proof of concept https://github.com/ahydrax/Hangfire.Atoms/pull/8

sergeyshaykhullin avatar Jun 21 '20 12:06 sergeyshaykhullin