Skip to content

Commit 69b0e14

Browse files
Merge pull request #284160 from Akhilesh-microsoft/ASR/signalr_concept_internals
[ASR: signalr -concept-internals]: Verified the article for links and freshness, reviewed the content, verified all the editorial parameters. Article seems good, no significant change found as it's conceptual article. Updated ms.date
2 parents efbdfb0 + e9526af commit 69b0e14

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-signalr/signalr-concept-internals.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: azure-signalr-service
66
ms.topic: conceptual
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp
9-
ms.date: 03/29/2023
9+
ms.date: 08/09/2024
1010
ms.author: lianwei
1111
---
1212
# Azure SignalR Service internals
@@ -39,9 +39,9 @@ Once the application server is started:
3939
- For ASP.NET SignalR: Azure SignalR Service SDK opens five WebSocket connections per hub to SignalR Service and one per application WebSocket connection.
4040

4141

42-
The initial number of connections defaults to 5 and is configurable using the `InitialHubServerConnectionCount` option in the SignalR Service SDK. For more information, see [configuration](signalr-howto-use.md#configure-options).
42+
The initial number of connections defaults to 5 and is configurable using the `InitialHubServerConnectionCount` option in the SignalR Service SDK. For more information, see [configuration](signalr-howto-use.md#configure-options).
4343

44-
While the application server is connected to the SignalR service, the Azure SignalR service may send load-balancing messages to the server. Then, the SDK starts new server connections to the service for better performance. Messages to and from clients are multiplexed into these connections.
44+
While the application server is connected to the SignalR service, the Azure SignalR service sends load-balancing messages to the server. Then, the SDK starts new server connections to the service for better performance. Messages to and from clients are multiplexed into these connections.
4545

4646
Server connections are persistently connected to the SignalR Service. If a server connection is disconnected due to a network issue:
4747

@@ -53,7 +53,7 @@ Server connections are persistently connected to the SignalR Service. If a serve
5353
When you use the SignalR Service, clients connect to the service instead of the application server.
5454
There are three steps to establish persistent connections between the client and the SignalR Service.
5555

56-
1. A client sends a negotiate request to the application server.
56+
1. Client sends a negotiate request to the application server.
5757
1. The application server uses Azure SignalR Service SDK to return a redirect response containing the SignalR Service URL and access token.
5858

5959
- For ASP.NET Core SignalR, a typical redirect response looks like:
@@ -89,7 +89,7 @@ SignalR Service transmits data from the client to the pairing application server
8989
9090
SignalR Service doesn't save or store customer data, all customer data received is transmitted to the target server or clients in real-time.
9191
92-
The Azure SignalR Service acts as a logical transport layer between application server and clients. All persistent connections are offloaded to SignalR Service. As a result, the application server only needs to handle the business logic in the hub class, without worrying about client connections.
92+
The Azure SignalR Service acts as a logical transport layer between application server and clients. All persistent connections are offloaded to SignalR Service. As a result, the application server only needs to handle the business logic in the hub class, without worrying about client connections.
9393
9494
## Next steps
9595

0 commit comments

Comments
 (0)