Changeset 5 for trunk/grails-app/controllers
- Timestamp:
- Jan 17, 2011, 5:08:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/nl/tno/metagenomics/FastaController.groovy
r3 r5 107 107 * The second parameter is a callback function to update progress indicators 108 108 */ 109 def parsedFiles = fastaService.parseFiles( filenames, { files, bytes -> 109 def parsedFiles = fastaService.parseFiles( filenames, { files, bytes, totalFiles, totalBytes -> 110 session.processProgress.numFiles += totalFiles; 111 session.processProgress.numBytes += totalBytes; 110 112 session.processProgress.filesProcessed = files; 111 113 session.processProgress.bytesProcessed = bytes;
Note: See TracChangeset
for help on using the changeset viewer.