3.8 KiB
title | author | description | manager | ms.author | ms.custom | ms.date | ms.prod | ms.technology | ms.topic | uid |
---|---|---|---|---|---|---|---|---|---|---|
Introduction to ASP.NET Core SignalR | rachelappel | Learn how the ASP.NET Core SignalR library simplifies adding real-time web functionality to apps. | wpickett | rachelap | mvc | 03/07/2018 | aspnet-core | aspnet | article | signalr/introduction |
Introduction to ASP.NET Core SignalR
By Rachel Appel
What is SignalR?
ASP.NET Core SignalR is a library that simplifies adding real-time web functionality to apps. Real-time web functionality enables server-side code to push content to clients instantly.
Good candidates for SignalR:
- Apps that require high frequency updates from the server. Examples are gaming, social networks, voting, auction, maps, and GPS apps.
- Dashboards and monitoring apps. Examples include company dashboards, instant sales updates, or travel alerts.
- Collaborative apps. Whiteboard apps and team meeting software are examples of collaborative apps.
- Apps that require notifications. Social networks, email, chat, games, travel alerts, and many other apps use notifications.
SignalR provides an API for creating server-to-client remote procedure calls (RPC). The RPCs call JavaScript functions on clients from server-side .NET Core code.
SignalR for ASP.NET Core:
- Handles connection management automatically.
- Enables broadcasting messages to all connected clients simultaneously. For example, a chat room.
- Enables sending messages to specific clients or groups of clients.
- Is open-sourced at GitHub.
- Scalable.
The connection between the client and server is persistent, unlike an HTTP connection.
Transports
SignalR abstracts over a number of techniques for building real-time web applications. WebSockets is the optimal transport, but other techniques like Server-Sent Events and Long Polling can be used when those aren't available. SignalR will automatically detect and initialize the appropriate transport based on features supported on the server and client.
Hubs and Endpoints
SignalR uses Hubs and Endpoints to communicate between clients and servers. The Hubs API covers the most scenarios.
A hub is a high-level pipeline built upon the Endpoint API that allows your client and server to call methods on each other. SignalR handles the dispatching across machine boundaries automatically, allowing clients to call methods on the server as easily as local methods, and vice versa. Hubs allow passing strongly-typed parameters to methods, which enables model binding. SignalR provides two built-in hub protocols: a text protocol based on JSON and a binary protocol based on MessagePack. MessagePack generally creates smaller messages than when using JSON. Older browsers must support XHR level 2 to provide MessagePack protocol support.
Hubs call client-side code by sending messages using the active transport. The messages contain the name and parameters of the client-side method. Objects sent as method parameters are deserialized using the configured protocol. The client tries to match the name to a method in the client-side code. When a match happens, the client method runs using the deserialized parameter data.
Endpoints provide a raw socket-like API, enabling them to read and write from the client. It's up to the developer to handle grouping, broadcasting, and other functions. The Hubs API is built on top of the Endpoints layer.
The following diagram shows the relationship between hubs, endpoints, and clients.