AI-generated Key Takeaways
-
BreakSeekData provides information about seeking, including the list of breaks that are skipped over.
-
The constructor requires
seekFrom,seekTo, and an array ofbreaks. -
The
breaksproperty is a list of cast.framework.messages.Break objects. -
The
seekFromproperty represents the current playback time. -
The
seekToproperty represents the target time to seek to.
cast.
framework
.
breaks
.
BreakSeekData
Provide seek information, including list of breaks that are seeked over.
Constructor
BreakSeekData
new BreakSeekData(seekFrom, seekTo, breaks)
Parameter
seekFrom
number
seekTo
number
breaks
Array of non-null cast.framework.messages.Break
Value must not be null.
Properties
breaks
non-null Array of non-null cast.framework.messages.Break
List of breaks.
seekFrom
number
Current playback time.
seekTo
number
The time to seek to.

