Interface AviExportHandler

  • All Known Implementing Classes:
    Godiva

    public interface AviExportHandler
    • Method Detail

      • getAviUrl

        String getAviUrl​(String times,
                         String fps)
        Returns the URL to fetch an AVI file. This depends on the timesteps and frame rate required (all other data can be obtained from the current state (GodivaStateInfo)
        Parameters:
        times - A string representing the desired times
        fps - The frame rate, in frames-per-second
        Returns:
        A URL which will lead to an AVI file containing an animation
      • animationStarted

        void animationStarted​(String times,
                              String fps)
        This is called when an animation is started. We provide the times and FPS so that the implementation can call getAviUrl if required (for example to set a link to the AVI when an animation is started as an overlay)
        Parameters:
        times -
        fps -
      • animationStopped

        void animationStopped()
        Called when the animation is stopped.