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