asternet/Asterisk.2013/Asterisk.NET/Manager/Event/LinkEvent.cs
2014-01-08 14:16:39 +00:00

18 lines
620 B
C#

namespace AsterNET.Manager.Event
{
/// <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;
}
}
}