Azure Serverless Function persistence of members with the Azure SignalR Service?
Does an Azure Serverless Function allow internal members to be persisted and load balanced with the Azure SignalR Service?
For example:
I have created a class that inherits the IGroupManager interface from Microsoft.AspNetCore.SignalR. I have not found any documentation as to how the SignalR Service load balance the connections. So I am assuming that there is a process for duplicating and updating Groups across the servers that are handling the load balancing.
If that is the case then, will my new class object also be maintained in the same manner being that it inherits the IGroupManager?
I do have to new() up the class in the SeverlessHub class.
Any insights on this will be greatly appreciated.