Skip to content

Commit fefd84b

Browse files
authored
Made fixes per Acrolinx suggestions
1 parent 68cf61c commit fefd84b

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

articles/azure-web-pubsub/quickstarts-livetry.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,20 @@ This guide walks you through two common messaging scenarios in LiveTry, while he
1616

1717
---
1818

19-
## What you'll learn
19+
## What you learn
2020

21-
You'll explore two messaging patterns often used in real-time applications:
21+
You explore two messaging patterns often used in real-time applications:
2222

2323
- **Server-to-group messaging**: Using the `sendToGroup` API to broadcast messages to all clients in a group.
24-
- **Client-to-group messaging**: Azure Web PubSub supports a capability that allows a client in a group to send messages directly to other clients in the same group—**without routing through your app server** — reducing latency.
25-
26-
Each scenario is accompanied by a short tutorial video to help you follow along.
24+
- **Client-to-group messaging**: Azure Web PubSub supports a capability that allows a client in a group to send messages directly to other clients in the same group—**without routing through your app server**—reducing latency.
2725

2826
---
2927

3028
## Key concepts
3129

32-
Before getting started, here’s a quick refresher on core Azure Web PubSub concepts that you’ll interact with in LiveTry:
30+
Before getting started, here’s a quick refresher on core Azure Web PubSub concepts that you interact with in LiveTry:
3331

34-
- **Hub**: A logical unit used to isolate and organize messaging logic. Clients always connects to a hub. With LiveTry, real traffic goes through the resource. For this tutorial, we recommend specifying a test hub name that doesn’t overlap with your production traffic.
32+
- **Hub**: A logical unit used to isolate and organize messaging logic. Clients always connect to a hub. With LiveTry, real traffic goes through the resource. For this tutorial, we recommend specifying a test hub name that doesn’t overlap with your production traffic.
3533
- **Connection**: A persistent WebSocket connection between a client and the Azure Web PubSub service.
3634
- **Group**: A server-managed subset of connections. Messages sent to a group are delivered only to the connections within that group.
3735
- **Messages**: The payloads exchanged between clients and the service. Messages can be broadcast to all, targeted to groups, or directed to individual connections.
@@ -40,7 +38,7 @@ Before getting started, here’s a quick refresher on core Azure Web PubSub conc
4038

4139
## Scenario 1: Send a message to a group from the server
4240

43-
In this scenario, you’ll simulate server-side broadcasting using the `sendToGroup` REST API. This demonstrates how the service routes a message from your backend to all clients in a specified group.
41+
In this scenario, you simulate server-side broadcasting using the `sendToGroup` REST API. This demonstrates how the service routes a message from your backend to all clients in a specified group.
4442

4543
### Steps
4644
1. In the Azure portal, navigate to your Azure Web PubSub resource.
@@ -54,7 +52,7 @@ In this scenario, you’ll simulate server-side broadcasting using the `sendToGr
5452
### What you’re learning
5553
You send messages to a group of clients using RESTful APIs. LiveTry demonstrates how server-to-group communication works without needing to deploy a backend. Azure Web PubSub also provides server SDKs for C#, JavaScript, Java, and Python.
5654

57-
Try repeating the steps with multiple clients to visualize message broadcasting in action. LiveTry supports up to 5 concurrent simulated clients.
55+
Try repeating the steps with multiple clients to visualize message broadcasting in action. LiveTry supports up to five concurrent simulated clients.
5856

5957
---
6058

@@ -76,7 +74,7 @@ This scenario showcases **client-to-group messaging**, which is ideal in applica
7674
## Tips for using LiveTry
7775

7876
- Open multiple browser tabs to simulate multiple users or devices.
79-
- Try combining additional operations like `joinGroup`, `leaveGroup`, or `sendToConnection`.
77+
- Try combining more operations like `joinGroup`, `leaveGroup`, or `sendToConnection`.
8078
- Use clear group names to better organize your experiments.
8179

8280
---

0 commit comments

Comments
 (0)