Fixed issue with ConfBridge vents and AMI failing to start

This commit is contained in:
skrusty 2014-01-09 10:09:40 +00:00
parent 3197e6a328
commit dcd7e95387
10 changed files with 39 additions and 14 deletions

View file

@ -12,5 +12,10 @@ namespace AsterNET.Manager.Event
///
/// </summary>
public string Conference { get; set; }
public AbstractConfbridgeEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -8,5 +8,9 @@ namespace AsterNET.Manager.Event
{
public class ConfbridgeEndEvent : AbstractConfbridgeEvent
{
public ConfbridgeEndEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -17,5 +17,10 @@ namespace AsterNET.Manager.Event
///
/// </summary>
public string CallerIDname { get; set; }
public ConfbridgeJoinEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -17,5 +17,10 @@ namespace AsterNET.Manager.Event
///
/// </summary>
public string CallerIDname { get; set; }
public ConfbridgeLeaveEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -6,7 +6,11 @@ using System.Threading.Tasks;
namespace AsterNET.Manager.Event
{
class ConfbridgeListCompleteEvent
public class ConfbridgeListCompleteEvent : ResponseEvent
{
public ConfbridgeListCompleteEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -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>

View file

@ -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>

View file

@ -8,6 +8,9 @@ namespace AsterNET.Manager.Event
{
public class ConfbridgeStartEvent : AbstractConfbridgeEvent
{
public ConfbridgeStartEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -12,5 +12,10 @@ namespace AsterNET.Manager.Event
///
/// </summary>
public string TalkingStatus { get; set; }
public ConfbridgeTalkingEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -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