From b7be19fed1fdc888af34342341bc9c34c5546abc Mon Sep 17 00:00:00 2001
From: youenn Receive timestamp
last packet belonging to this frame was received over the network.
+ The {{RTCConfiguration}} dictionary is defined in [[WEBRTC]]. + This document extends that dictionary with an additional parameter + to provide a hint on the latency expected by the web application. +
+
+ enum RTCConfigurationExpectedLatency {
+ "best",
+ "no-expectation"
+ };
+ partial dictionary RTCConfiguration {
+ RTCConfigurationExpectedLatency expectedLatency = "best";
+ };
+
+ The latency expected by the web application.
+| Enumeration description (non-normative) | +|
|---|---|
| best | +
+ + The User Agent is expected to set up the network link to optimize the connection latency. + For that purpose, it SHOULD use techniques like network slicing if available. + + |
+
| no-expectation | +
+ + The User Agent is expected to set up the network link without trying to optimize the connection latency. + It MAY instead try to optimize for some other purposes like power consumption. + + |
+