Status of an index verify job.
File
File: dtsearch.h
Syntax
C++
struct dtsVerifyStatusInfo {
const char * text;
long docsToVerify;
long docsVerified;
long wordsToVerify;
long wordsVerified;
long step;
long percentDone;
unsigned long kbytesInIndex;
unsigned long kwordsInIndex;
};
Members
Members |
Description |
---|---|
const char * text; |
The text of the document or word being verified |
long docsToVerify; |
Number of documents in the index to be checked |
long docsVerified; |
Number of documents checked so far. |
long wordsToVerify; |
Number of words in the index to be verified |
long wordsVerified; |
Number of words verified so far |
long step; |
VerifyStep indicating the state of the verify process |
long percentDone; |
Percentage of the index that has been verified |
unsigned long kbytesInIndex; |
Number of bytes in documents in this index (in KB) |
unsigned long kwordsInIndex; |
Number of words in documents in this index (in thousands) |
Group
Remarks
When an index is being verified, the dtSearch Engine will provide progress updates by passing a dtsVerifyStatusInfo structure back to a callback function.