Fixed issue with ConfBridge vents and AMI failing to start
This commit is contained in:
parent
3197e6a328
commit
dcd7e95387
|
@ -12,5 +12,10 @@ namespace AsterNET.Manager.Event
|
|||
///
|
||||
/// </summary>
|
||||
public string Conference { get; set; }
|
||||
|
||||
public AbstractConfbridgeEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,5 +8,9 @@ namespace AsterNET.Manager.Event
|
|||
{
|
||||
public class ConfbridgeEndEvent : AbstractConfbridgeEvent
|
||||
{
|
||||
public ConfbridgeEndEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,5 +17,10 @@ namespace AsterNET.Manager.Event
|
|||
///
|
||||
/// </summary>
|
||||
public string CallerIDname { get; set; }
|
||||
|
||||
public ConfbridgeJoinEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,5 +17,10 @@ namespace AsterNET.Manager.Event
|
|||
///
|
||||
/// </summary>
|
||||
public string CallerIDname { get; set; }
|
||||
|
||||
public ConfbridgeLeaveEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,7 +6,11 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
class ConfbridgeListCompleteEvent
|
||||
public class ConfbridgeListCompleteEvent : ResponseEvent
|
||||
{
|
||||
public ConfbridgeListCompleteEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,13 +6,9 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
public class ConfbridgeListEvent : ResponseEvent
|
||||
public class ConfbridgeListEvent : AbstractConfbridgeEvent
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Conference { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
|
|
@ -6,13 +6,8 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
public class ConfbridgeListRoomsEvent : ResponseEvent
|
||||
public class ConfbridgeListRoomsEvent : AbstractConfbridgeEvent
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Conference { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
|
|
@ -8,6 +8,9 @@ namespace AsterNET.Manager.Event
|
|||
{
|
||||
public class ConfbridgeStartEvent : AbstractConfbridgeEvent
|
||||
{
|
||||
|
||||
public ConfbridgeStartEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,5 +12,10 @@ namespace AsterNET.Manager.Event
|
|||
///
|
||||
/// </summary>
|
||||
public string TalkingStatus { get; set; }
|
||||
|
||||
public ConfbridgeTalkingEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
09.09.2014 (skrusty)
|
||||
Fixed issues with ConfBridge events causing AMI to fail.
|
||||
|
||||
08.01.2014 (skrusty)
|
||||
Migrated to Visual Studio 2013
|
||||
Migrated from TFS to Git on Codeplex
|
||||
|
|
Loading…
Reference in a new issue