Add Queue dynamicaly to server

Hi, I see that you can create dynamically all the queues that you want using a simple code.

EnqueuedState queue = new EnqueuedState("DynamicQueueName");                
var jobId = new BackgroundJobClient().Create<Program>(x => x.SendData("AAA","BBB"), queue);

That this queue never go to a server to start the process.

How I can do it?

If I restart the NetCore App I gell all the queues and start processing but I need to do without restart the app.

Many thanks in advance

Any news on that??
Best regards
Gon