在Grails服务中,我想渲染一个页面,而另一个方法是异步运行的。我尝试了文档async和gpars库中的不同内容。列出的所有内容都没有按预期工作。
GParsPool.withPool(2) {
this.&longFunction.callAsync(command)
rendering()
}
后来尝试了
GParsPool.withPool(2) {
def a ={longFunction(command)}.async()
a()
rendering()
}