I need to define several SignalR Hubs in my application, most of them will use a SQL Server Backplane, but one of them will use an Azure Service Bus.
Is it possible to have two different backplanes in the same application?
How do I specify a different configuration for a particular Hub?
All the samples that I've seen so far use GlobalHost.DependencyResolver.UseServiceBus to configure the backplane, but that will use the same backplane for all the hubs, not just the one.