我如何等待值发生变化?

发布于 2024-12-12 01:58:44 字数 260 浏览 0 评论 0原文

我正在编写一个创建进程的 Groovy 脚本。我调用 ConsumerProcessOutput() 将输出转储到 StringBuffer。如何在主线程中等待而不进行轮询?

def process = "command".execute()
def builder = new StringBuilder()
process.consumeProcessOutput(builder)
while (!closure.call(builder)) {}

I'm writing a Groovy script which creates a process. I call consumeProcessOutput() to dump the output to a StringBuffer. How can I wait in the main thread without polling?

def process = "command".execute()
def builder = new StringBuilder()
process.consumeProcessOutput(builder)
while (!closure.call(builder)) {}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

楠木可依 2024-12-19 01:58:44

为什么不包装你自己的 StringBuilder
并挂钩附加事件

why not wrap your own StringBuilder
and hook the append event

梦行七里 2024-12-19 01:58:44

您应该能够使用 waitFor

process.waitFor()

或者,另一种可能性是:

def output = 'command'.execute().text

You should be able to use waitFor

process.waitFor()

Or, another possibility would be:

def output = 'command'.execute().text
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文