Class BufferedChecksumIndexInput
Simple implementation of ChecksumIndexInput that wraps another input and delegates calls.
Implements
System.IDisposable
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
  Namespace: Lucene.Net.Store
Assembly: Lucene.Net.dll
Syntax
public class BufferedChecksumIndexInput : ChecksumIndexInput, IDisposableConstructors
| Improve this Doc View SourceBufferedChecksumIndexInput(IndexInput)
Creates a new BufferedChecksumIndexInput
Declaration
public BufferedChecksumIndexInput(IndexInput main)Parameters
| Type | Name | Description | 
|---|---|---|
| IndexInput | main | 
Properties
| Improve this Doc View SourceChecksum
Declaration
public override long Checksum { get; }Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
Overrides
| Improve this Doc View SourceLength
Declaration
public override long Length { get; }Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
Overrides
Methods
| Improve this Doc View SourceClone()
Declaration
public override object Clone()Returns
| Type | Description | 
|---|---|
| System.Object | 
Overrides
| Improve this Doc View SourceDispose(Boolean)
Declaration
protected override void Dispose(bool disposing)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Boolean | disposing | 
Overrides
| Improve this Doc View SourceGetFilePointer()
Declaration
public override long GetFilePointer()Returns
| Type | Description | 
|---|---|
| System.Int64 | 
Overrides
| Improve this Doc View SourceReadByte()
Declaration
public override byte ReadByte()Returns
| Type | Description | 
|---|---|
| System.Byte | 
Overrides
| Improve this Doc View SourceReadBytes(Byte[], Int32, Int32)
Declaration
public override void ReadBytes(byte[] b, int offset, int len)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Byte[] | b | |
| System.Int32 | offset | |
| System.Int32 | len | 
Overrides
Implements
      System.IDisposable