Lucene.Net.Facet.SlowRAMDirectory.CreateOutput C# (CSharp) 메소드

CreateOutput() 공개 메소드

public CreateOutput ( string name, IOContext context ) : IndexOutput
name string
context IOContext
리턴 IndexOutput
        public override IndexOutput CreateOutput(string name, IOContext context)
        {
            if (sleepMillis != -1)
            {
                return new SlowIndexOutput(this, base.CreateOutput(name, context));
            }

            return base.CreateOutput(name, context);
        }