Links
dtSearch Text Retrieval Engine Programmer's Reference 7.70
DIndexJob::OnProgressUpdate Method
DIndexJob Class | DIndexJob Class | dtSearch Namespace | Send Feedback

During indexing, OnProgressUpdate will be called frequently with information about the progress of the indexing job.

virtual void OnProgressUpdate(dtsIndexProgressInfo& info);
Parameters
Parameters 
Description 
dtsIndexProgressInfo& info 
Structure with information on the status of the index upate 
Remarks

During indexing, OnProgressUpdate will be called frequently with information about the progress of the indexing job. You can use this information to show the user a progress bar or other status indicator during indexing. To access this information, create a class based on DIndexJob that overrides OnProgressUpdate. Example: 

 

 class CMyIndexJob : public DIndexJob {
     public:
         virtual void OnProgressUpdate(dtsIndexProgressInfo& info) {
         // ... show the user the update info in a dialog box
         }
     };
Class
Links
You are here: C++ Support Classes > dtSearch Namespace > Classes > DIndexJob Class > DIndexJob::OnProgressUpdate Method
Copyright (c) 1995-2012 dtSearch Corp. All rights reserved.