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

org.dvb.dsmcc.NPTListener Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version

package org.dvb.dsmcc;

import java.util.*;



/** 
  * Objects that implement the NPTListener interface can receive
  * NPTStatusEvent and NPTRateChangedEvent events.
  * @since MHP 1.0.1
  */

public interface NPTListener extends java.util.EventListener {
  
	/**
	 * Send a NPTRateChangeEvent to a registered listener.
 	 * @param e the NPTRateChangeEvent event.
	 */
	public void receiveRateChangedEvent( NPTRateChangeEvent e);

	/**
	 * Send a NPTStatusEvent to a registered listener.
	 * @param e a NPTStatusEvent describing the status change
	 */
	public void receiveNPTStatusEvent( NPTStatusEvent e);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy