Skip to content

Commit f55369a

Browse files
authored
Merge pull request #53099 from vicancy/patch-3
Update signalr-concept-internals.md
2 parents 7b6f336 + afcec9b commit f55369a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ ms.author: zhshang
99
---
1010
# Azure SignalR Service internals
1111

12-
Azure SignalR Service is built on top of ASP.NET Core SignalR framework. It also supports ASP.NET SignalR as a preview feature.
12+
Azure SignalR Service is built on top of ASP.NET Core SignalR framework. It also supports ASP.NET SignalR by reimplementing ASP.NET SignalR's data protocol on top of the ASP.NET Core framework.
1313

14-
> To support ASP.NET SignalR, Azure SignalR Service reimplements ASP.NET SignalR's data protocol on top of the ASP.NET Core framework
15-
16-
You can easily migrate a local ASP.NET Core SignalR application to work with SignalR Service, with a few lines of code change.
14+
You can easily migrate a local ASP.NET Core SignalR application or ASP.NET SignalR application to work with SignalR Service, with a few lines of code change.
1715

1816
The diagram below describes the typical architecture when you use the SignalR Service with your application server.
1917

@@ -83,4 +81,4 @@ At this point, the application server receives an event with information from th
8381
SignalR service transmits data from the client to the pairing application server. And data from the application server will be sent to the mapped clients.
8482
8583
As you can see, the Azure SignalR Service is essentially a logical transport layer between application server and clients. All persistent connections are offloaded to SignalR Service.
86-
Application server only needs to handle the business logic in hub class, without worrying about client connections.
84+
Application server only needs to handle the business logic in hub class, without worrying about client connections.

0 commit comments

Comments
 (0)