Lucene.Net.Index.DocumentsWriterDeleteQueue.DeleteSlice.DeleteSlice C# (CSharp) Method

DeleteSlice() private method

private DeleteSlice ( Node currentTail ) : Lucene.Net.Support
currentTail Node
return Lucene.Net.Support
            internal DeleteSlice(Node currentTail)
            {
                Debug.Assert(currentTail != null);
                /*
                 * Initially this is a 0 length slice pointing to the 'current' tail of
                 * the queue. Once we update the slice we only need to assign the tail and
                 * have a new slice
                 */
                SliceHead = SliceTail = currentTail;
            }
DocumentsWriterDeleteQueue.DeleteSlice