Azavea.Open.DAO.Memory.SinglePropertyMemoryIndex.Rebuild C# (CSharp) Method

Rebuild() public method

This method rebuilds the index given a new list of data objects.
public Rebuild ( IEnumerable objects ) : void
objects IEnumerable All the objects in the data store.
return void
        public override void Rebuild(IEnumerable<MemoryObject> objects)
        {
            _values = SplitObjectsByProperty(objects);
        }