shared: Indexer: Add setProgressReportThreshold()

This commit is contained in:
Albert S. 2023-05-01 23:52:45 +02:00
부모 6cd7a92576
커밋 4604970f9d
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -171,3 +171,8 @@ void Indexer::setFileSaverOptions(FileSaverOptions options)
{
this->fileSaverOptions = options;
}
void Indexer::setProgressReportThreshold(int threshold)
{
this->progressReportThreshold = threshold;
}

파일 보기

@ -82,6 +82,8 @@ class Indexer : public QObject
void setFileSaverOptions(FileSaverOptions options);
void setProgressReportThreshold(int threshold);
void requestCancellation();
Indexer(SqliteDbService &db);