C# Class Lucene.Net.Store.ChecksumIndexOutput

Inheritance: Lucene.Net.Store.IndexOutput
Mostra file Open project: synhershko/lucene.net Class Usage Examples

Public Methods

Method Description
ChecksumIndexOutput ( Lucene.Net.Store.IndexOutput main ) : System
FinishCommit ( ) : void

See PrepareCommit

Flush ( ) : void
PrepareCommit ( ) : void

Starts but does not complete the commit of this file (= writing of the final checksum at the end). After this is called must call FinishCommit and the Close to complete the commit.

Seek ( long pos ) : void
WriteByte ( byte b ) : void
WriteBytes ( byte b, int offset, int length ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

ChecksumIndexOutput() public method

public ChecksumIndexOutput ( Lucene.Net.Store.IndexOutput main ) : System
main Lucene.Net.Store.IndexOutput
return System

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

FinishCommit() public method

See PrepareCommit
public FinishCommit ( ) : void
return void

Flush() public method

public Flush ( ) : void
return void

PrepareCommit() public method

Starts but does not complete the commit of this file (= writing of the final checksum at the end). After this is called must call FinishCommit and the Close to complete the commit.
public PrepareCommit ( ) : void
return void

Seek() public method

public Seek ( long pos ) : void
pos long
return void

WriteByte() public method

public WriteByte ( byte b ) : void
b byte
return void

WriteBytes() public method

public WriteBytes ( byte b, int offset, int length ) : void
b byte
offset int
length int
return void