Class Cue

java.lang.Object
com.amazonaws.ivs.player.Cue
Direct Known Subclasses:
TextCue, TextMetadataCue

public abstract class Cue extends Object
Superclass for all Cue types
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    The time when the cue should be cleared, in milliseconds.
    final long
    The time when the cue should be displayed, in milliseconds.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Cue(long startTime, long endTime)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • startTime

      public final long startTime
      The time when the cue should be displayed, in milliseconds.
    • endTime

      public final long endTime
      The time when the cue should be cleared, in milliseconds.
  • Constructor Details

    • Cue

      public Cue(long startTime, long endTime)
  • Method Details