Skip to content

Commit 8561040

Browse files
fixed a typo
1 parent fec6be6 commit 8561040

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/event-grid/mqtt-client-life-cycle-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: geguirgu
1010
# MQTT Clients Life Cycle Events
1111

1212
Client Life Cycle events allow applications to react to events about the client connection status or the client resource operations. It allows you to:
13-
- Monitor your clients' connection status. For example, you can build an application that analyzes cleints' connections to optimize behavior.
13+
- Monitor your clients' connection status. For example, you can build an application that analyzes clients' connections to optimize behavior.
1414
- React with a mitigation action for client disconnections. For example, you can build an application that initiates an auto-mitigation flow or creates a support ticket every time a client is disconnected.
1515
- Track the namespace that your clients are attached to. For example, confirm that your clients are connected to the right namespace after you initiate a failover.
1616

@@ -264,7 +264,7 @@ az eventgrid system-topic create --resource-group <Resource Group > --name <Syst
264264
- Example 2: if a client gets created, then deleted within 5 seconds, EG will emit only MQTTClientDeleted event.
265265

266266
### Order connection status events:
267-
The sequence number on the MQTTClientSessionConnected and MQTTClientSessionDisconnected events can be used to determine the last reported state of the client session's connection as the sequence number will be incremented with every new event. The sequence number for the MQTTClientSessionDisconnected will always match the sequence number of the MQTTClientSessionConnected event for the same connection. For example, the list of events and sequence numbers below is a sample of events in the right order for the same client:
267+
The sequence number on the MQTTClientSessionConnected and MQTTClientSessionDisconnected events can be used to determine the last reported state of the client session's connection as the sequence number is incremented with every new event. The sequence number for the MQTTClientSessionDisconnected always matches the sequence number of the MQTTClientSessionConnected event for the same connection. For example, the list of events and sequence numbers below is a sample of events in the right order for the same client:
268268
- MQTTClientSessionConnected > "sequenceNumber": 1
269269
- MQTTClientSessionDisconnected > "sequenceNumber": 1
270270
- MQTTClientSessionConnected > "sequenceNumber": 2

0 commit comments

Comments
 (0)