All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.shared.media.EndOfContentEvent Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.shared.media;

import javax.media.Controller;
import javax.media.RateChangeEvent;

/**
 * EndOfContentEvent is a RateChangeEvent that is posted when the rate change is 
 * due to a forward playback hitting the end of the stored context, or a forward 
 * playback catching up with the live recording point.
 */
public class EndOfContentEvent extends RateChangeEvent
{
    /**
     * Create a EndOfContentEvent.  
     *
     * @param from the controller that is generating the event.
     * @param newRate the new rate following the rate change
     *
     */
    public EndOfContentEvent(Controller from, float newRate) 
	{
			super(from, newRate);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy