Skip to content

Commit

Permalink
Merge pull request #73 from abrami/main
Browse files Browse the repository at this point in the history
update LazyReader
  • Loading branch information
abrami authored Mar 11, 2024
2 parents d15acb3 + 25d63b6 commit fe78747
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ public DUUIFileReaderLazy(String folder, String ending, String sTargetPath) {
this(folder, ending, 500, -1, false, "", true, null, 0, sTargetPath, ending);
}

public DUUIFileReaderLazy(String folder, String ending, int iDebugCount) {
this(folder, ending, iDebugCount, -1, null, "", false, null, 0);
}

public DUUIFileReaderLazy(String folder, String ending, String sTargetPath, int iDebugCount) {
this(folder, ending, iDebugCount, -1, false, "", true, null, 0, sTargetPath, ending);
}

public DUUIFileReaderLazy(String folder, String ending, int debugCount, int sampleSize, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE sampleMode, String savePath, boolean bAddMetadata, String language, int skipSmallerFiles) {
this(folder, ending, debugCount, getRandomFromMode(sampleMode, sampleSize), getSortFromMode(sampleMode), savePath, bAddMetadata, language, skipSmallerFiles, savePath, null);
}
Expand Down

0 comments on commit fe78747

Please sign in to comment.