Package 

Interface SendableAnimation

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Constructor Detail

    • Method Detail

      • onStop

         abstract Unit onStop(Runnable runnable)

        Runs the Runnable when the animation is done sending or .stop is called.

        Parameters:
        runnable - The runnable to be run, when the animation is done sending.
      • getIsContinuous

         abstract Boolean getIsContinuous()

        If true, then the Animation will loop when it hits the last frame, or until stop is called.

      • setIsContinuous

         abstract Unit setIsContinuous(Boolean isContinuous)

        If true, then the Animation will loop when it hits the last frame, or until stop is called.

      • getIsRunning

         abstract Boolean getIsRunning()

        Checks whether or not the animation is currently running.

        If true the animation is running and scheduling sending of the frames. If false the animation isn't running.