Lucene.Net.Store.SimpleFSDirectory.IndexInputSlicerAnonymousInnerClassHelper.OpenSlice C# (CSharp) Method

OpenSlice() public method

public OpenSlice ( string sliceDescription, long offset, long length ) : IndexInput
sliceDescription string
offset long
length long
return IndexInput
            public override IndexInput OpenSlice(string sliceDescription, long offset, long length)
            {
                return new SimpleFSIndexInput("SimpleFSIndexInput(" + sliceDescription + " in path=\"" + File.FullName + "\" slice=" + offset + ":" + (offset + length) + ")", Descriptor, offset, length, BufferedIndexInput.BufferSize(Context));
            }
SimpleFSDirectory.IndexInputSlicerAnonymousInnerClassHelper