1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

add comments

This commit is contained in:
momo
2015-11-05 16:19:29 -05:00
parent e6296527fa
commit 8b6ec00cba

View File

@@ -720,7 +720,6 @@ final class DataSourceIngestJob {
}
}
}
}
this.fileIngestPipelinesQueue.put(pipeline);
}
@@ -960,6 +959,13 @@ final class DataSourceIngestJob {
this.checkForStageCompleted();
}
/**
* Set the current module name being run and the file name it is running on.
* To be used for more detailed cancelling.
*
* @param moduleName Name of module currently running.
* @param taskName Name of file the module is running on.
*/
void setCurrentFileIngestModule(String moduleName, String taskName) {
this.currentFileIngestModule = moduleName;
this.currentFileIngestTask = taskName;