Interface RemoveCueEvent
-
- All Implemented Interfaces:
-
com.theoplayer.android.api.event.Event
,com.theoplayer.android.api.event.track.TrackEvent
public interface RemoveCueEvent implements TrackEvent<E>
Fired when REMOVECUE occurs for a TextTrack.
- The only use for this event is to identify which cue was removed!
-
-
Method Summary
Modifier and Type Method Description abstract TextTrack
getTrack()
The TextTrack from which the TextTrackCue was removed. abstract TextTrackCue
getCue()
The TextTrackCue that was removed. -
-
Method Detail
-
getTrack
abstract TextTrack getTrack()
The TextTrack from which the TextTrackCue was removed.
- Returns:
The TextTrack from which the TextTrackCue was removed.
-
getCue
abstract TextTrackCue getCue()
The TextTrackCue that was removed.
- Returns:
The TextTrackCue that was removed.
-
-
-
-