Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CoreConsts.cs 382B

12345678910111213
  1. namespace HealthMonitor.Core.Common
  2. {
  3. public class CoreConsts
  4. {
  5. //public const string StatisticsRedisKey = "._CRUD_STATISTICS";
  6. public const int MAX_OPERATE_COUNT = 2000;
  7. public const int MAX_DYNAMIC_OPERATE_COUNT = 3000;
  8. //public const long MAX_DELAY_SECONDS = 20;
  9. public const int MAX_FAILURE_OPERATE_POP_COUNT = 1000;
  10. }
  11. }