Muralidharan Deenathayalan Thanks for posting your question in Microsoft Q&A. StaticServiceHubContextStore is part of Microsoft.Azure.WebJobs.Extensions.SignalRService which is only used in In-Process model. However, in isolated model, you use Worker.Extensions.SignalRService and full implementation including ServerlessHub, InvocationContext etc. can be found here and refer to doc: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-output?tabs=isolated-process&pivots=programming-language-csharp for sending messages or broad a message to all connected clients. Check out SignalR samples for full sample code for different scenarios.
If you are looking for similar experience to in-process, consider ServerlessHub
with a class-based model approach.
I hope this helps and feel free to reach out if any questions.
If you found the answer to your question helpful, please take a moment to mark it as Yes
for others to benefit from your experience. Or simply add a comment tagging me and would be happy to answer your questions.