Describes the current status of the indexer
C++: Returned through dtsIndexProgressInfo.step
.NET: Returned through IndexProgressInfo and IndexJob.StatusIndexingStep
Java: Returned through IndexProgressInfo
public enum IndexingStep { ixStepNone = 0, ixStepBegin = 1, ixStepCreatingIndex = 2, ixStepCheckingFiles = 3, ixStepReadingFiles = 4, ixStepStoringWords = 5, ixStepMerging = 6, ixStepCompressing = 7, ixStepDone = 8, ixStepVerifyingIndex = 9, ixStepMergingIndexes = 10 }
Public Enum IndexingStep ixStepNone = 0 ixStepBegin = 1 ixStepCreatingIndex = 2 ixStepCheckingFiles = 3 ixStepReadingFiles = 4 ixStepStoringWords = 5 ixStepMerging = 6 ixStepCompressing = 7 ixStepDone = 8 ixStepVerifyingIndex = 9 ixStepMergingIndexes = 10 End Enum
|
Members |
Description |
|
ixStepNone |
Not started |
|
ixStepBegin |
Start of indexing job |
|
ixStepCreatingIndex |
An index is being created |
|
ixStepCheckingFiles |
Searching for files to be added to the index or checking files to see if they have already been indexed |
|
ixStepReadingFiles |
Parsing files into words and sorting the words |
|
ixStepStoringWords |
Storing word information to be added to the index |
|
ixStepMerging |
Adding words to the index |
|
ixStepCompressing |
Compressing the index |
|
ixStepDone |
Indexing complete |
|
ixStepVerifyingIndex |
Checking for index corruption |
|
ixStepMergingIndexes |
Merging two or more indexes into a single index |
|
Copyright (c) 1998-2012 dtSearch Corp. All rights reserved.
|