Lucene.Net.Facet.SlowRAMDirectory.SlowIndexInput.ReadBytes C# (CSharp) Method

ReadBytes() public method

public ReadBytes ( byte b, int offset, int len ) : void
b byte
offset int
len int
return void
            public override void ReadBytes(byte[] b, int offset, int len)
            {
                if (numRead >= IO_SLEEP_THRESHOLD)
                {
                    outerInstance.doSleep(rand, len);
                    numRead = 0;
                }
                numRead += len;
                ii.ReadBytes(b, offset, len);
            }