Represents a command to resume the pixel streaming session.
This class sends a message to the Metabox API to resume a paused or disconnected stream.
What does it unlock?
Resumes the Unreal Engine pixel streaming connection after it has been paused, disconnected, or stopped due to inactivity (AFK timeout).
Practical Application
Used to reconnect the 3D streaming session without a full page reload. Essential for 'Reconnect' or 'Resume' buttons
shown when the stream is interrupted, e.g., after an idle timeout or network disruption.
AI Coding Best Practices
Call api.sendCommandToMetabox(new ResumeStream()). No parameters. Resumes the existing streaming session —
does not reinitialize the configurator or reset product/environment state.
Represents a command to resume the pixel streaming session. This class sends a message to the Metabox API to resume a paused or disconnected stream.
What does it unlock?
Resumes the Unreal Engine pixel streaming connection after it has been paused, disconnected, or stopped due to inactivity (AFK timeout).
Practical Application
Used to reconnect the 3D streaming session without a full page reload. Essential for 'Reconnect' or 'Resume' buttons shown when the stream is interrupted, e.g., after an idle timeout or network disruption.
AI Coding Best Practices
Call
api.sendCommandToMetabox(new ResumeStream()). No parameters. Resumes the existing streaming session — does not reinitialize the configurator or reset product/environment state.Example