C# Class Lucene.Net.Store.ChecksumIndexOutput

Inheritance: Lucene.Net.Store.IndexOutput
Afficher le fichier Open project: synhershko/lucene.net Class Usage Examples

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Method Details

ChecksumIndexOutput() public méthode

public ChecksumIndexOutput ( Lucene.Net.Store.IndexOutput main ) : System
main Lucene.Net.Store.IndexOutput
Résultat System

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

FinishCommit() public méthode

See PrepareCommit
public FinishCommit ( ) : void
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

PrepareCommit() public méthode

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
Résultat void

Seek() public méthode

public Seek ( long pos ) : void
pos long
Résultat void

WriteByte() public méthode

public WriteByte ( byte b ) : void
b byte
Résultat void

WriteBytes() public méthode

public WriteBytes ( byte b, int offset, int length ) : void
b byte
offset int
length int
Résultat void