we are planning to use SignalR with Windows Azure Service Bus for a cloud application that requires live client updating (browsers). We might have about 200 clients connected to our solution. If we deploy our application over a 4 instances cloud service I know I should use the "GlobalHost.DependencyResolver.UseWindowsAzureServiceBus(connectionString, 1);" option to connect them through the service bus.
My question is: Will it use service bus relays? or topics? as many as hubs on each instance? one relay per client (200 clients) connected using SignalR? I just want to know how much they will charge me to know if it is worth it. In fact the most important thing to know here is if SignalR uses Topics/subscriptions or relays?
Thanks a lot for your help,