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

org.dvb.net.rc.RCInterfaceReleasedEvent Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.dvb.net.rc;

import org.davic.resources.ResourceStatusEvent;

/** 
 * This event informs an application that a RCInterface
 * has been released by an application or other entity in the system. It is
 * generated when an application which had successfully reserved a 
 * RCInterface calls the 
 * ConnectionRCInterface.release method. It will also
 * be generated if any other entities in the system own such an interface
 * and then release that interface in such a way that it could then become
 * available to applications using this API.
 */

public class RCInterfaceReleasedEvent extends ResourceStatusEvent 
{
	/**
	 * Constructor for the event
	 * @param bg the RCInterface which has been released
	 */
	public RCInterfaceReleasedEvent(Object bg) 
	{
		super(bg);
	}

	/**
	 * Returns the device that has been released
	 *
	 * @return the RCInterface object representing the interface that has been released
	 */
	public Object getSource()
	{
		return null;
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy