Skip to content

Commit 130c4b2

Browse files
committed
Fix
1 parent 66ec6fa commit 130c4b2

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

articles/azure-web-pubsub/includes/reference-json-requests.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Format:
1818
}
1919
```
2020

21-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
21+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
2222

2323
### Leave groups
2424

@@ -32,7 +32,7 @@ Format:
3232
}
3333
```
3434

35-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
35+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
3636

3737
### Publish messages
3838

@@ -49,7 +49,7 @@ Format:
4949
}
5050
```
5151

52-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
52+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
5353
* `noEcho` is optional. If set to true, this message is not echoed back to the same connection. If not set, the default value is false.
5454
* `dataType` can be one of `json`, `text`, or `binary`:
5555
* `json`: `data` can be any type that JSON supports and will be published as what it is; If `dataType` isn't specified, it defaults to `json`.
@@ -143,7 +143,7 @@ Format:
143143
}
144144
```
145145

146-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
146+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
147147

148148
`dataType` can be one of `text`, `binary`, or `json`:
149149
* `json`: data can be any type json supports and will be published as what it is; If `dataType` is not specified, it defaults to `json`.

articles/azure-web-pubsub/includes/reference-protobuf-requests.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ Format:
44

55
Set `join_group_message.group` to the group name.
66

7-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
7+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
88

99
### Leave groups
1010

1111
Format:
1212

1313
Set `leave_group_message.group` to the group name.
1414

15-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
15+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
1616

1717
### Publish messages
1818

1919
Format:
2020

21-
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](./concept-client-protocols.md#ackid-and-ack-response)
21+
* `ackId` is the identity of each request and should be unique. The service sends a [ack response message](#ack-response) to notify the process result of the request. More details can be found at [AckId and Ack Response](../concept-client-protocols.md#ackid-and-ack-response)
2222

2323
There's an implicit `dataType`, which can be `protobuf`, `text`, or `binary`, depending on the `data` in `MessageData` you set. The receiver clients can use `dataType` to handle the content correctly.
2424

articles/azure-web-pubsub/reference-json-reliable-webpubsub-subprotocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For example, in JS, a Reliable PubSub WebSocket client can be created using:
2323
var pubsub = new WebSocket('wss://test.webpubsub.azure.com/client/hubs/hub1', 'json.reliable.webpubsub.azure.v1');
2424
```
2525

26-
When using `json.reliable.webpubsub.azure.v1` subprotocol, the client must follow the [How to create reliable clients](howto-develop-reliable-clients) to implement reconnection, publisher and subscriber.
26+
When using `json.reliable.webpubsub.azure.v1` subprotocol, the client must follow the [How to create reliable clients](./howto-develop-reliable-clients) to implement reconnection, publisher and subscriber.
2727

2828
[!INCLUDE [reference-permission](includes/reference-permission.md)]
2929

articles/azure-web-pubsub/reference-protobuf-reliable-webpubsub-subprotocol.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For example, in JavaScript, you can create a Reliable PubSub WebSocket client wi
2525
var pubsub = new WebSocket('wss://test.webpubsub.azure.com/client/hubs/hub1', 'protobuf.reliable.webpubsub.azure.v1');
2626
```
2727

28-
When using `json.reliable.webpubsub.azure.v1` subprotocol, the client must follow the [How to create reliable clients](howto-develop-reliable-clients) to implement reconnection, publisher and subscriber.
28+
When using `json.reliable.webpubsub.azure.v1` subprotocol, the client must follow the [How to create reliable clients](./howto-develop-reliable-clients) to implement reconnection, publisher and subscriber.
2929

3030
> [!NOTE]
3131
> Currently, the Web PubSub service supports only [proto3](https://developers.google.com/protocol-buffers/docs/proto3).
@@ -87,9 +87,9 @@ message MessageData {
8787

8888
[!INCLUDE [reference-protobuf-requests](includes/reference-protobuf-requests.md)]
8989

90-
### SequenceAck Message
90+
### Sequence Ack
9191

92-
Reliable PubSub WebSocket client must send SequenceAck message once it received a message from the service. Find more in [How to create reliable clients](./howto-develop-reliable-clients.md#subscriber)
92+
Reliable PubSub WebSocket client must send `SequenceAckMessage` once it received a message from the service. Find more in [How to create reliable clients](./howto-develop-reliable-clients.md#subscriber)
9393

9494
* `sequence_id` is a incremental uint64 number from the message received.
9595

0 commit comments

Comments
 (0)