Lucene.Net.Store.BufferedIndexOutput.Flush C# (CSharp) Method

Flush() public method

Forces any buffered output to be written.
public Flush ( ) : void
return void
		public override void  Flush()
		{
			FlushBuffer(buffer, bufferPosition);
			bufferStart += bufferPosition;
			bufferPosition = 0;
		}