Lucene.Net.Store.NIOFSDirectory.NIOFSIndexInput.NIOFSIndexInput C# (CSharp) Method

NIOFSIndexInput() public method

public NIOFSIndexInput ( string resourceDesc, FileStream fc, IOContext context ) : System.Threading
resourceDesc string
fc System.IO.FileStream
context IOContext
return System.Threading
            public NIOFSIndexInput(string resourceDesc, FileStream fc, IOContext context)
                : base(resourceDesc, context)
            {
                this.Channel = fc;
                this.Off = 0L;
                this.End = fc.Length;
            }

Same methods

NIOFSDirectory.NIOFSIndexInput::NIOFSIndexInput ( string resourceDesc, FileStream fc, long off, long length, int bufferSize ) : System.Threading