2013-01-18 15:55:50 +00:00
|
|
|
using System;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Action
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <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>
|
2014-01-08 14:16:39 +00:00
|
|
|
/// <seealso cref="AsterNET.Manager.Event.ResponseEvent"/>
|
2013-01-18 15:55:50 +00:00
|
|
|
public abstract class ManagerActionEvent : ManagerAction
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Returns the event type that indicates that Asterisk is finished sending response events for this action.
|
|
|
|
/// </summary>
|
2014-01-08 14:16:39 +00:00
|
|
|
/// <seealso cref="AsterNET.Manager.Event.ResponseEvent"/>
|
2013-01-18 15:55:50 +00:00
|
|
|
public abstract Type ActionCompleteEventClass();
|
|
|
|
}
|
|
|
|
}
|