
org.dvb.net.rc.ConnectionDroppedEvent Maven / Gradle / Ivy
The newest version!
package org.dvb.net.rc;
/**
* ConnectionDroppedEvent - An event generated after an attempt to setup a connection for a
* ConnectionRCInterface
fails due to the connection being
* dropped by the target. For a ConnectionRCInterface of type TYPE_PSTN
,
* this includes the following conditions:
*
* - Connection was dropped after ringing but before it was answered
*
- Connection rang but was never answered and timed-out
*
- Connection was dropped after answering but before the IP connection was established
*
- Connection was answered but the IP connection was never established and timed-out
*
*/
public class ConnectionDroppedEvent extends ConnectionFailedEvent {
/**
* Construct an event.
*
* @param source the ConnectionRCInterface
whose connection attempt failed
*/
public ConnectionDroppedEvent(Object source){
super(source);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy