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

org.ocap.shared.media.BeginningOfContentEvent 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;

/**
 * BeginningOfContentEvent is a RateChangeEvent that is posted when the rate change is 
 * due to a rewind hitting the beginning of the media, or due to the time-shift 
 * buffer reaching maximum depth. 
 */
public class BeginningOfContentEvent extends RateChangeEvent
{
    /**
     * Create a BeginningOfContentEvent.  
     *
     * @param from the controller that is generating the event.
     * @param newRate the new rate following the rate change
     *
     */
    public BeginningOfContentEvent(Controller from, float newRate) 
	{
			super(from, newRate);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy