18 lines
396 B
C#
18 lines
396 B
C#
|
|
namespace QYZH.InteractiveMagazine.Models.Settings;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// RabbitMQ重试配置。
|
||
|
|
/// </summary>
|
||
|
|
public class RabbitMQRetrySettings
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 最大重试次数。
|
||
|
|
/// </summary>
|
||
|
|
public int MaxRetryCount { get; set; } = 3;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 重试延迟毫秒数。
|
||
|
|
/// </summary>
|
||
|
|
public int RetryDelayMilliseconds { get; set; } = 30000;
|
||
|
|
}
|