GPars paralell写,什么时候写的文件?

时间:2016-01-12 18:56:15

标签: groovy gradle gpars

所以如果我有一个看起来像的块:

def fileTree = project.fileTree("someDir/")
GPars.withPool(threads,exceptionHandler) {
  fileTree.eachParallel { File -> 
   //Load the file, transform the data and write it to a new file name. 
  } //End of eachParallel
}//End of withPool

所有文件在什么时候写入,刷新并准备好在其他代码中使用?在End of eachParallelEnd of withpool? ...或者是需要特殊代码来管理它吗?

1 个答案:

答案 0 :(得分:0)

这取决于你的eachParallel实施,但应该在那里完成。