HangfireIO / HangfireIO/Hangfire

Support to specify the queue name

Open
#748 3 comments 3 reactions 0 assignees View on GitHub
Dominant language
C#
Stars
10.1k
Forks
1.8k
Avg merge
1h 19m
Merged PRs (30d)
1

Description

when applying any operation except recurrent, we cannot specify the queue name.

Example:

```
BackgroundJob.Schedule(
() => Console.WriteLine("Hello, world"),
TimeSpan.FromDays(1));
```

Something like this would be great:

```
BackgroundJob.Schedule(
() => Console.WriteLine("Hello, world"),
TimeSpan.FromDays(1),
"application-1");
```

closest and related existing tickets -

https://github.com/HangfireIO/Hangfire/issues/228
https://github.com/HangfireIO/Hangfire/issues/406

Contributor guide

Open the contributing guide

Research direction

Start with the existing BackgroundJob.Schedule API shown in the issue and review related issues #228 and #406 for prior discussion. The work is complete when non-recurrent operations can accept a queue name consistently, with the expected API behavior covered by the project's existing tests.

Written by the indexing model from the issue text.

Assessment

Tech stack
csharp
Domain
backend
Issue type
Feature
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.