标签: groovy annotations
我有一些格式的Groovy代码:
@ConditionalInterrupt({ MyTimeoutClass.myMethod(command, name) }) def someClosure = { String command, String name ->
代码中有一些关闭'注释;但是,我希望能够将闭包参数传递给Annotation Closure调用的方法。
有没有办法这样做?