所以如果我有一个看起来像的块:
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 eachParallel
或End of withpool
? ...或者是需要特殊代码来管理它吗?
答案 0 :(得分:0)
这取决于你的eachParallel
实施,但应该在那里完成。