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

20 lines
758 B
C#

using System;
namespace AsterNET.Manager.Action
{
/// <summary>
/// The ManagerActionEvent is implemented by ManagerActions that
/// return their result not in a ManagerResponse but by sending a series of events.<br/>
/// The event type that indicates that Asterisk is finished is returned by the
/// ActionCompleteEventClass property.
/// </summary>
/// <seealso cref="AsterNET.Manager.Event.ResponseEvent"/>
public abstract class ManagerActionEvent : ManagerAction
{
/// <summary>
/// Returns the event type that indicates that Asterisk is finished sending response events for this action.
/// </summary>
/// <seealso cref="AsterNET.Manager.Event.ResponseEvent"/>
public abstract Type ActionCompleteEventClass();
}
}