zenghongyao 4f1814b8df 协议解析优化
策略模式回调采用Action方式灵活处理
2025-04-29 09:16:48 +08:00

31 lines
543 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Enums
{
/// <summary>
/// 监控重试类型
/// </summary>
public enum RetryReadingEnum
{
/// <summary>
/// 1分钟
/// </summary>
OneMinute,
/// <summary>
/// 5分钟
/// </summary>
FiveMinute,
/// <summary>
/// 15分钟
/// </summary>
FifteenMinute,
}
}