示例#1
0
        public FeatureStateBaseHolder(FeatureStateBaseHolder fs, ApplyFeature applyFeature)
        {
            _applyFeature = applyFeature;

            if (fs != null)
            {
                FeatureUpdateHandler = fs.FeatureUpdateHandler;
            }
        }
示例#2
0
 public FeatureHubRepository(ApplyFeature applyFeature)
 {
     _applyFeature = applyFeature;
 }
示例#3
0
 public FeatureHubRepository()
 {
     _applyFeature = new ApplyFeature(new PercentageMurmur3Calculator(), new MatcherRegistry());
 }