Lucene.Net.Facet.SlowRAMDirectory.CreateOutput C# (CSharp) Méthode

CreateOutput() public méthode

public CreateOutput ( string name, IOContext context ) : IndexOutput
name string
context IOContext
Résultat 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);
        }