C# Class ScrewTurn.Wiki.SearchEngine.DumpedChange

Represents a change occurred to the index, structured for easy dumping to disk or database.
The class is not thread-safe.
Show file Open project: mono/ScrewTurnWiki Class Usage Examples

Protected Properties

Property Type Description
document DumpedDocument
mappings List
words List

Public Methods

Method Description
DumpedChange ( DumpedDocument document, List words, List mappings ) : System

Initializes a new instance of the DumpedChange class.

Method Details

DumpedChange() public method

Initializes a new instance of the DumpedChange class.
If , or are null.
public DumpedChange ( DumpedDocument document, List words, List mappings ) : System
document DumpedDocument The dumped document data.
words List The list of dumped words data.
mappings List The list of dumped mappings data.
return System

Property Details

document protected property

The dumped document data.
protected DumpedDocument,ScrewTurn.Wiki.SearchEngine document
return DumpedDocument

mappings protected property

The list of dumped mappings data.
protected List mappings
return List

words protected property

The list of dumped words data.
protected List words
return List