Status of an index verify job.
struct dtsVerifyStatusInfo { const char * text; long docsToVerify; long docsVerified; long wordsToVerify; long wordsVerified; long step; long percentDone; unsigned long kbytesInIndex; unsigned long kwordsInIndex; };
dtsearch.h
|
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) |
When an index is being verified, the dtSearch Engine will provide progress updates by passing a dtsVerifyStatusInfo structure back to a callback function.
|
Copyright (c) 1995-2008 dtSearch Corp. All rights reserved.
|