Class IndexInput
Abstract base class for input from a file in a Directory. A random-access input stream. Used for all Lucene index input operations.
Index
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Store
Assembly: Lucene.Net.dll
Syntax
public abstract class IndexInput : DataInput, IDisposable
Constructors
| Improve this Doc View SourceIndexInput(String)
resourceDescription
should be a non-null, opaque string
describing this resource; it's returned from
To
Declaration
protected IndexInput(string resourceDescription)
Parameters
Type | Name | Description |
---|---|---|
System. |
resourceDescription |
Properties
| Improve this Doc View SourceLength
The number of bytes in the file.
Declaration
public abstract long Length { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceClone()
Returns a clone of this stream.
Clones of a stream access the same data, and are positioned at the same point as the stream they were cloned from.
Expert: Subclasses must ensure that clones may be positioned at different points in the input from each other and from the stream they were cloned from.
Warning: Lucene never closes cloned
Index
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System. |
Overrides
| Improve this Doc View SourceDispose()
Closes the stream to further operations.
Declaration
public void Dispose()
Dispose(Boolean)
Closes the stream to further operations.
Declaration
protected abstract void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System. |
disposing |
GetFilePointer()
Returns the current position in this file, where the next read will occur.
Declaration
public abstract long GetFilePointer()
Returns
Type | Description |
---|---|
System. |
See Also
| Improve this Doc View SourceSeek(Int64)
Sets current position in this file, where the next read will occur.
Declaration
public abstract void Seek(long pos)
Parameters
Type | Name | Description |
---|---|---|
System. |
pos |
See Also
| Improve this Doc View SourceToString()
Returns the resourceDescription that was passed into the constructor.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |