Пример #1
0
        public static void LoadFromClusterManifest(string traceType, ref StoreSettings storeSettings)
        {
            Diagnostics.Assert(storeSettings != null, traceType, "storeSettings");
            ConfigStoreUtility.InitializeConfigStore();
            var sectionName = StoreSettingsConfigurationNames.SectionName;

            SetSweepThreshold(traceType, ref storeSettings, sectionName);
            SetEnableStrict2PL(traceType, ref storeSettings, sectionName);

            ValidateSettings(traceType, storeSettings);
        }
Пример #2
0
        private static void SetEnableStrict2PL(string traceType, ref StoreSettings storeSettings, string sectionName)
        {
            Diagnostics.Assert(string.IsNullOrEmpty(sectionName) == false, traceType, "section name cannot be null or empty");

            if (!storeSettings.EnableStrict2PL.HasValue)
            {
                storeSettings.EnableStrict2PL = ConfigStoreUtility.GetUnencryptedBoolConfigValue(
                    sectionName,
                    StoreSettingsConfigurationNames.EnableStrict2PL.Item1,
                    StoreSettingsConfigurationNames.EnableStrict2PL.Item2);
            }

            Diagnostics.Assert(storeSettings.EnableStrict2PL.HasValue, traceType, "EnableStrict2PL must have a value");
        }
Пример #3
0
        private static void SetSweepThreshold(string traceType, ref StoreSettings storeSettings, string sectionName)
        {
            Diagnostics.Assert(string.IsNullOrEmpty(sectionName) == false, traceType, "section name cannot be null or empty");

            if (!storeSettings.SweepThreshold.HasValue)
            {
                storeSettings.SweepThreshold = ConfigStoreUtility.GetUnencryptedIntConfigValue(
                    sectionName,
                    StoreSettingsConfigurationNames.SweepThreshold.Item1,
                    StoreSettingsConfigurationNames.SweepThreshold.Item2);
            }

            Diagnostics.Assert(storeSettings.SweepThreshold.HasValue, traceType, "SweepThreshold must have a value");
        }