V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
vance
V2EX  ›  Java

Java 定时任务,删除取消 Task

  •  
  •   vance · 2018-10-23 10:19:53 +08:00 · 4816 次点击
    这是一个创建于 2004 天前的主题,其中的信息可能已经有所发展或是发生改变。

    有个定时任务 scheduler.scheduleAtFixedRate,每隔 5s 去执行检查 redis 某个 key,存在则继续逻辑,不存在则不往下走,但这个定时任务还是一直运行的。有什么方法在 run 的时候如果 redis 的 key 不存在把这个 Task 删除掉或取消掉

    10 条回复    2018-10-24 08:54:20 +08:00
    codingKingKong
        1
    codingKingKong  
       2018-10-23 11:11:21 +08:00
    没有试验, 试试这个?
    ```java
    /**
    * Terminates this timer, discarding any currently scheduled tasks.
    * Does not interfere with a currently executing task (if it exists).
    * Once a timer has been terminated, its execution thread terminates
    * gracefully, and no more tasks may be scheduled on it.
    *
    * <p>Note that calling this method from within the run method of a
    * timer task that was invoked by this timer absolutely guarantees that
    * the ongoing task execution is the last task execution that will ever
    * be performed by this timer.
    *
    * <p>This method may be called repeatedly; the second and subsequent
    * calls have no effect.
    */
    public void cancel()
    ```
    gaius
        2
    gaius  
       2018-10-23 11:13:53 +08:00
    用一个线程做?
    kanepan19
        3
    kanepan19  
       2018-10-23 11:17:18 +08:00
    当然可以 任务提交的时候会返回一个期望, 然后 future.cancel()
    D3EP
        4
    D3EP  
       2018-10-23 12:09:49 +08:00
    每次执行完 task 再去注册 task 就行了。
    D3EP
        5
    D3EP  
       2018-10-23 12:10:04 +08:00
    直接用 schedule。
    vance
        6
    vance  
    OP
       2018-10-23 14:45:56 +08:00
    @D3EP 能否详细点,感谢
    honeycomb
        7
    honeycomb  
       2018-10-23 18:43:08 +08:00 via Android
    @vance 请仔细看 scheduler 的文档,里面提供的执行一次( one shot )的方法可以轻松的达到楼主的目的。

    比如楼上 @kanepan19 提到的,你让它跑一个 callable 就能有返回值,然后下一个 trigger 根据这个返回值决定下一次怎么 schedule。

    如果只用 runnable,找一个线程安全的变量来充当 flag 的作用。

    还有更复杂的办法,比如你直接在项目里引用 quartz 库来达成目的也是没有问题的。

    如果是 Java9,它的 forkjoin 也提供了一个定时触发异步人物的方法。
    D3EP
        8
    D3EP  
       2018-10-23 22:42:17 +08:00
    ```java
    public class Main {
    private static final ScheduledExecutorService EXECUTOR_SERVICE = Executors.newSingleThreadScheduledExecutor();
    public static void main(String[] args) {
    EXECUTOR_SERVICE.schedule(Main::task, 1, TimeUnit.SECONDS);
    }
    public static void task(){
    if (true) {
    System.out.println("Continue");
    EXECUTOR_SERVICE.schedule(Main::task, 1, TimeUnit.SECONDS);
    }else {
    System.out.println("Exit");
    }
    }
    }
    ```
    mayowwwww
        9
    mayowwwww  
       2018-10-23 23:59:39 +08:00   ❤️ 1
    抛出一个运行时异常。
    lihongjie0209
        10
    lihongjie0209  
       2018-10-24 08:54:20 +08:00
    if(key not exist){

    logger.info("直接退出执行就好了, 搞那么复杂")

    return
    }
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1125 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 23:03 · PVG 07:03 · LAX 16:03 · JFK 19:03
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.