using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreAgent.ProtocolClient.HandlerEventArgs
{
public class HandlerCleanupEventArgs : EventArgs
{
///
/// ID处理器数量
///
public int IdHandlerCount { get; }
///
/// 按名称处理器数量
///
public int NamedHandlerCount { get; }
///
/// 总清理数量
///
public int TotalCleanedCount { get; }
///
/// 构造函数
///
/// ID处理器数量
/// 按名称处理器数量
/// 总清理数量
public HandlerCleanupEventArgs(int idHandlerCount, int namedHandlerCount, int totalCleanedCount)
{
IdHandlerCount = idHandlerCount;
NamedHandlerCount = namedHandlerCount;
TotalCleanedCount = totalCleanedCount;
}
}
}