Lucene.Net.Util.ThrottledIndexOutput.NewFromDelegate C# (CSharp) Метод

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

public NewFromDelegate ( IndexOutput output ) : ThrottledIndexOutput
output IndexOutput
Результат ThrottledIndexOutput
        public virtual ThrottledIndexOutput NewFromDelegate(IndexOutput output)
        {
            return new ThrottledIndexOutput(BytesPerSecond, FlushDelayMillis, CloseDelayMillis, SeekDelayMillis, MinBytesWritten, output);
        }