我想编写一个异步函数,它接受像 HTTPBuilder.request 这样的处理程序的闭包。函数是怎么写的?
当我调用该函数时,它将如下所示:
// calling my function now - we'll process the results when status is available...
myFunction(arg1, arg2) {
status.success = { result ->
println 'cool'
}
status.failure = { result ->
println 'not cool'
}
}