manualRefresh() this.$refs.viewer.refreshCurrentFrame();
| Mode | Description | Use Case | |------|-------------|-----------| | | Entire frame at fixed rate (legacy fallback) | Text documents, static UI | | Gaze-Adaptive Dynamic Refresh | Primary region @ max Hz, secondary @ reduced Hz | VR gaming, flight simulators | | Predictive Partial Refresh | Only changed tiles sent based on motion vectors | Video playback, scrolling web | | Event-Driven Delta Refresh | Refresh only when saliency change > threshold | Surveillance, dashboards |
The word is the disruptor. In traditional systems, a refresh might reuse cached or predicted frames. A new refresh implies:
// 4. Decode and bind new frame this.buffer = this.decode(source);
ViewerFrame Refresh Mode Description: Adds a control set to the ViewerFrame component allowing users to reload the embedded content source. This supports both manual intervention and automatic timed refreshing.
manualRefresh() this.$refs.viewer.refreshCurrentFrame();
| Mode | Description | Use Case | |------|-------------|-----------| | | Entire frame at fixed rate (legacy fallback) | Text documents, static UI | | Gaze-Adaptive Dynamic Refresh | Primary region @ max Hz, secondary @ reduced Hz | VR gaming, flight simulators | | Predictive Partial Refresh | Only changed tiles sent based on motion vectors | Video playback, scrolling web | | Event-Driven Delta Refresh | Refresh only when saliency change > threshold | Surveillance, dashboards | viewerframe mode refresh new
The word is the disruptor. In traditional systems, a refresh might reuse cached or predicted frames. A new refresh implies: manualRefresh() this
// 4. Decode and bind new frame this.buffer = this.decode(source); Decode and bind new frame this
ViewerFrame Refresh Mode Description: Adds a control set to the ViewerFrame component allowing users to reload the embedded content source. This supports both manual intervention and automatic timed refreshing.