2
Rubyではタイムアウトモジュールを使用してブロックを実行し、タイムアウトを過ぎるとコードの実行を停止します。Rubyタイムアウトモジュールに相当するGroovyはありますか?
require 'timeout'
status = Timeout::timeout(5) {
# Something that should be interrupted if it takes too much time...
}
Groovyには次のような機能がありますか?