gpt4 book ai didi

Java:addScheduledJobAfterDelay() - 我可以强制启动计划作业吗?

转载 作者:行者123 更新时间:2023-11-30 05:12:48 25 4
gpt4 key购买 nike

我正在开发一款扑克游戏。在投注阶段,我使用 Red5 iSchedulingService 创建一个计划作业,该作业每 8 秒运行一次,转发给下一个玩家进行投注。现在,如果用户在 8 秒结束之前下注,我想手动强制启动下一个计划作业。

有没有办法强制计划的作业在需要时立即启动?

最佳答案

您可以使用Executors来做到这一点。有更干净的实现,但这是一个尝试和基本的东西,可以使用 Future 完成您想要的事情。和 Callable .

// wherever you set up the betting stage
ScheduledExecutorService bettingExecutor =
Executors.newSingleThreadScheduledExecutor();

ScheduledFuture<?> future = bettingExecutor.schedule(new BettingStage(), 8,
TimeUnit.SECONDS);

//...

// in the same class (or elsewhere as a default/protected/public class)
private class BettingStage implements Callable<ScheduledFuture<?>> () {
public ScheduledFuture<?> call() thows ExecutionException {
ScheduledFuture<?> future = bettingExecutor.schedule(new BettingStage(), 8,
TimeUnit.SECONDS);
// betting code here
boolean canceled = future.cancel(false); // cancels the task if not running yet
if(canceled) {
// run immediately
future = bettingExecutor.schedule(new BettingStage(),
0, TimeUnit.SECONDS)
}
return future;
}
}

关于Java:addScheduledJobAfterDelay() - 我可以强制启动计划作业吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2774043/

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