gpt4 book ai didi

java - Google Appengine Cron 作业

转载 作者:行者123 更新时间:2023-11-30 08:29:29 26 4
gpt4 key购买 nike

我们可以动态指定 Cron 作业吗?我想定义一个在未来某个时间发生的任务。我怎样才能实现这个功能?这需要在 Google App Engine 中完成。我发现的唯一方法是进行轮询

最佳答案

您可以使用任务队列,如所述here .任务队列具有与 Cron 作业相同的持续时间限制(10 分钟),您可以使用 TaskOptions 对象上的 countdownMillis 方法指定任务执行的时间.例如:

Queue myQueue = QueueFactory.getQueue("myQueue");
myQueue.add(TaskOptions.Builder.withUrl("/myTask").countdownMillis(2000));

将队列 myQueue 上的 URL /myTask 任务的执行延迟 2 秒。看看here了解如何根据您的需要正确配置任务队列。

关于java - Google Appengine Cron 作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19408487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com