52 lines
1 KiB
C#
52 lines
1 KiB
C#
using AsterNET.Manager.Event;
|
|
using System;
|
|
|
|
namespace AsterNET.Manager.Action
|
|
{
|
|
/// <summary>
|
|
/// Show queue summary
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Action.QueueStatusAction" />
|
|
public class QueueSummaryAction : ManagerActionEvent
|
|
{
|
|
#region Action
|
|
|
|
/// <summary>
|
|
/// Get the name of this action, i.e. "Filter".
|
|
/// </summary>
|
|
public override string Action
|
|
{
|
|
get { return "QueueSummary"; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region MyRegion
|
|
|
|
/// <summary>
|
|
/// Name of queue
|
|
/// </summary>
|
|
public string Queue { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region QueueSummaryAction(string queue)
|
|
|
|
public QueueSummaryAction(string queue)
|
|
{
|
|
Queue = queue;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ActionCompleteEventClass()
|
|
|
|
public override Type ActionCompleteEventClass()
|
|
{
|
|
return typeof(QueueSummaryEvent);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|