Assigning queue priority

My understanding of the documentation leads me to believe that multiple queues priority is assigned at StartUp.

So if you had 5 queues, A, B, C, D, E, then A would be higher than B, B higher than C and so on.

Is this correct?

I don’t see any properties or methods to change or assign priority. Is it even possible?

It’s not super intuitive, but see the last sentence on this page: http://docs.hangfire.io/en/latest/background-processing/configuring-queues.html

Yeah I read that and interpreted it as “priority is in the order of adding, with the last one a priority of ‘default’”

The reason I ask is my Q names are not “critical” or “default”. I have 5 Q’s and what I’d like to do is assign “critical” to the first 3 and “default” to the last 2.

Have given up and reverted back to the documentation example of just “critical” and “default”.

Thanks for the help. :slightly_smiling: