Skip to content

Commit 9fad1d8

Browse files
authored
update 10
1 parent c6f78d3 commit 9fad1d8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/communication-services/concepts/voice-video-calling/includes/user-facing-diagnostics-web.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ userFacingDiagnostics.media.on('diagnosticChanged', diagnosticChangedListener);
118118
```
119119

120120
## Accessing Remote User Facing Diagnostic events
121-
To send remote UFDs to all participants on a call, you must first UDF's to sent. You enable or disable this on a per client basis. Once activated, the client will begin transmitting its local UFDs remotely to all participants for their consumption and processing. Please note that when the number of participants on a call exceeds 20, the transmission of remote UFDs from the local client will cease. This measure is in place to prevent excessive consumption of network bandwidth due to UFD traffic.
121+
To transmit remote UFDs to all participants on a call, it is necessary to enable the function from each client. This can be activated or deactivated on a per-client basis. Once enabled, the client will start transmitting its local UFDs remotely to all participants for their use and processing. It should be noted that if the number of participants exceeds 20, the transmission of remote UFDs from the local client will stop. This measure is implemented to prevent excessive network bandwidth consumption due to UFD traffic.
122122

123123
```js
124124
// Start the local client to send its local UFD to all participants (send local UFD to remote clients).
@@ -127,9 +127,9 @@ remoteUfdsFeature.startSendingDiagnostics();
127127
remoteUfdsFeature.stopSendingDiagnostics();
128128
```
129129

130-
RemoteParticipantDiagnosticsData has the following data
131-
- diagnostic contains array of diagnostics UFD that have been fired off on a remote machines. For example a UFD of `NetworkSendQuality`.
132-
- value is `DiagnosticQuality` or `DiagnosticFlag`:
130+
For the code sample below, `RemoteParticipantDiagnosticsData` has the following data associated with it:
131+
- `diagnostic` contains array of diagnostics UFD that have been fired from a remote machines. For example a UFD of `NetworkSendQuality`.
132+
- The value of that element will be defined as: `DiagnosticQuality` or `DiagnosticFlag`:
133133
- DiagnosticQuality = enum { Good = 1, Poor = 2, Bad = 3 }.
134134
- DiagnosticFlag = `true` | `false`
135135
- valueType of the array = `DiagnosticQuality` | `DiagnosticFlag`

0 commit comments

Comments
 (0)