作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一款扑克游戏。在投注阶段,我使用 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/
我正在开发一款扑克游戏。在投注阶段,我使用 Red5 iSchedulingService 创建一个计划作业,该作业每 8 秒运行一次,转发给下一个玩家进行投注。现在,如果用户在 8 秒结束之前下注,
我是一名优秀的程序员,十分优秀!