2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A LinkEvent is triggered when two voice channels are linked together and voice data exchange commences.<br/>
|
|
|
|
/// Several Link events may be seen for a single call.
|
|
|
|
/// This can occur when Asterisk fails to setup a native bridge for the call.
|
|
|
|
/// This is when Asterisk must sit between two telephones and perform CODEC conversion on their behalf.
|
|
|
|
/// </summary>
|
|
|
|
public class LinkEvent : BridgeEvent
|
|
|
|
{
|
|
|
|
public LinkEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
islink = true;
|
|
|
|
bridgeState = BridgeStates.BRIDGE_STATE_LINK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|