Динамически создаваемый перерыв в результате того, что пользователь захотел сделать перерыв.
когда можно пропустить
(число или неопределенное)
Время в секундах, когда этот клип-паузу можно будет пропустить. 5 означает, что конечный пользователь может пропустить этот отрывок через пять секунд. Если это поле не определено, это означает, что текущий клип-брейк нельзя пропустить.
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-07-24 UTC."],[[["\u003cp\u003e\u003ccode\u003eBreakStatus\u003c/code\u003e objects represent the status of a break in a media stream, including information about the current break clip and time elapsed.\u003c/p\u003e\n"],["\u003cp\u003eConstructor parameters include \u003ccode\u003ecurrentBreakTime\u003c/code\u003e and \u003ccode\u003ecurrentBreakClipTime\u003c/code\u003e for initializing break status.\u003c/p\u003e\n"],["\u003cp\u003eKey properties include \u003ccode\u003ebreakClipId\u003c/code\u003e, \u003ccode\u003ebreakId\u003c/code\u003e, \u003ccode\u003ecurrentBreakClipTime\u003c/code\u003e, \u003ccode\u003ecurrentBreakTime\u003c/code\u003e, \u003ccode\u003eseekBreak\u003c/code\u003e, and \u003ccode\u003ewhenSkippable\u003c/code\u003e for detailed break information.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ewhenSkippable\u003c/code\u003e property determines when a break clip can be skipped by the user, if at all.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eseekBreak\u003c/code\u003e property reflects a dynamically generated break when a user seeks over a break in the content.\u003c/p\u003e\n"]]],["`BreakStatus` details the state of a media break, indicating the time elapsed within the current break (`currentBreakTime`) and within the current break clip (`currentBreakClipTime`). It includes the IDs of the current break (`breakId`) and break clip (`breakClipId`). `whenSkippable` shows when a break clip can be skipped, while `seekBreak` represents a break dynamically created from a seek. This class is a constructor accepting `currentBreakTime` and `currentBreakClipTime`.\n"],null,["cast.[framework](/cast/docs/reference/web_receiver/cast.framework).[messages](/cast/docs/reference/web_receiver/cast.framework.messages).BreakStatus \nclass static\n\nRepresents the status of a break.\n\nConstructor\n\nBreakStatus\n\nnew\nBreakStatus(currentBreakTime, currentBreakClipTime)\n\n| Parameter ||\n|----------------------|------------------------------------------------------------------------------------|\n| currentBreakTime | (number or undefined) Time in seconds elapsed after the current break starts. |\n| currentBreakClipTime | (number or undefined) Time in seconds elapsed after the current break clip starts. |\n\nProperties\n\nbreakClipId\n\n(string or undefined)\n\nThe ID of the current break clip.\n\nbreakId\n\n(string or undefined)\n\nThe ID of the current break.\n\ncurrentBreakClipTime\n\n(number or undefined)\n\nThe time elapsed after the current break clip started, in seconds.\n\ncurrentBreakTime\n\n(number or undefined)\n\nThe time elapsed after the current break started, in seconds.\n\nseekBreak\n\n(non-null [cast.framework.messages.Break](/cast/docs/reference/web_receiver/cast.framework.messages.Break) or undefined)\n\nA dynamically-generated break as a result of a user seeking over a break.\n\nwhenSkippable\n\n(number or undefined)\n\nThe time in seconds when this break clip becomes skippable. `5` means\nthat the end user can skip this break clip after five seconds. If this\nfield is not defined, it means that the current break clip is not\nskippable."]]