In my hub, how do I get a list of all currently connected connectionIds?
Essentially, I'm doing some encryption (yes, I've talked to a bunch of people and nothing built-in works) and have an instance of Aes
for each connection. So basically when I need to send a message to all clients I can't just do Clients.All
but rather must manually enumerate all clients, fetch its Aes encoder (by id) and then send a message to it.