Example #1
0
 public override void StartAutoIndexingProperty(string propName)
 {
     _propertyKeysToInclude.getAndUpdate(current =>
     {
         ISet <string> updated = new HashSet <string>();
         updated.addAll(current);
         updated.add(propName);
         return(updated);
     });
 }