DEV Community

vinoth
vinoth

Posted on

Azure SignalR functions - An intro

Pushing real time messages to web app through Azure functions SignalR integration and ServiceBus:

For signalR the example is always chat applications. I wanted to take a different route and provide an example of real time scenario as following.

  1. When a customer places an order the admin will receive a notification
  2. When the Admin accept/reject the order the customer will receive notification.

As the real time collaboration increases we are often in a situation to provide updates to the applications then and there an event occurs. In order to provide real time updates or push contents to the consumers from the server we use signalR library provided by Microsoft. In simple words, when we want push some contents from server to the client application (ex:webapp) we use signalR.
Let me explain using the demo project I have created then the things would be clear.

The following Azure services are used:

  1. Service bus queue – to de-couple Admin and customer end
  2. Azure functions with SignalR – to push real time notifications.
  3. Azure function Service Bus bindings – to process the messages.
  4. Azure SignalR

The below is the project structure:

Alt Text

Azure Functions :
Process Order - Service bus binding to process the incoming messages when an order is placed by the customer and also passes a message “order Placed” to the signalR which will be pushed to admin webapp .

SignalRNegotiate :
This negotiate function is required by Azure signalR service where clients do the handshake and get the connection details of signalR. This is the communication point between two ends of SignalR publisher and subscriber.
UpdateOrderStatus :
This function will be called when Admin accept/reject the order status and put the respective message to the signalR and then pushed to the customer.
The above 3 functions requires Azure SignalR connection string. The Azure signalR can be created from the azure portal.

Let’s dive a bit into the application.

In the Customer application HomeController - > Place Order method, the details of the order is been placed into the service bus queue, which will trigger the Azure function “ProcessOrder”. The “ProcessOrder” azure function, save the details to the DB and place a message in the signalR notification hub with specific target name,in our example it is “productordered”. Whoever listening to this SignalR target will be notified and the data will be shared .
using (var ctx = new EventMessagingDemoContext())
{
ctx.Orders.Add(order);
ctx.SaveChanges();
}
signalRMessages.AddAsync(
new SignalRMessage
{
Target = "productOrdered",
Arguments = new[] { order }
});
}
In the admin end the SignalR service is connected via Javascript. The withURl() function specifies the “negotiate” Azure function. Through this it receives the SignalR connection and waiting for messages on the “productordered’ target. Once received the alert will be shown with the message.

var connection = new signalR.HubConnectionBuilder()
.withUrl("http://localhost:7074/api/")
.configureLogging(signalR.LogLevel.Information)
.build();

    connection.start().then(function () {
        console.log("connected");
    });

    connection.on('productOrdered', function (order) {
        alert("order recieved for the product " + order.ProductName + ".Please refresh!");
    });

The same way the accept/reject message is communicated to the customer via SignalR.

The source code can be found at:
https://github.com/vinothrao/EventMessagingDemo

Conclusion:
With the above sample we could get a basic idea and understanding of how SignalR works and the purpose of it.

Latest comments (0)