在以下HelloWorld GPars example中,我们有loop
字样:
def decryptor = actor {
loop {
react { message ->
if (message instanceof String) reply message.reverse()
else stop()
}
}
}
def console = actor {
decryptor.send 'lellarap si yvoorG'
react {
println 'Decrypted message: ' + it
decryptor.send false
}
}
[decryptor, console]*.join()
如何确定,它是什么?如果我在Ctrl click
中IntelliJ
,我什么也得不到。同时,如果我Ctrl click
工作react
,请转到the method react in GPars。
它也有loop
methods。但是没有单Closure
作为参数。
我可以肯定,这里调用了一些loop
方法吗?