Lucene.Net.Index.ReadersAndUpdates.DropMergingUpdates C# (CSharp) Метод

DropMergingUpdates() публичный Метод

Drops all merging updates. Called from IndexWriter after this segment finished merging (whether successfully or not).
public DropMergingUpdates ( ) : void
Результат void
        public virtual void DropMergingUpdates()
        {
            lock (this)
            {
                MergingDVUpdates.Clear();
                IsMerging = false;
            }
        }