定时任务接口ScheduledExecutorService

class MyScheduledExecutor implements Runnable {
    
    private String jobName;
    
    MyScheduledExecutor() {
        
    }
    
    MyScheduledExecutor(String jobName) {
        this.jobName = jobName;
    }


    @Override
    public void run() {
        
        System.out.println(jobName + " is running");
    }

}


public static void main(String[] args) {
        ScheduledExecutorService service = Executors.newScheduledThreadPool(10);
        
        long initialDelay = 1;
        long period = 1;
        // 从现在开始1秒钟之后,每隔1秒钟执行一次job1
        service.scheduleAtFixedRate(new MyScheduledExecutor("job1"), initialDelay, period, TimeUnit.SECONDS);
        
        // 从现在开始2秒钟之后,每隔2秒钟执行一次job2
        service.scheduleWithFixedDelay(new MyScheduledExecutor("job2"), initialDelay, period, TimeUnit.SECONDS);
    }


ScheduledExecutorService 中两种最常用的调度方法 ScheduleAtFixedRate 和 ScheduleWithFixedDelay。ScheduleAtFixedRate 每次执行时间为上一次任务开始起向后推一个时间间隔,即每次执行时间为 :initialDelay, initialDelay+period, initialDelay+2*period, …;ScheduleWithFixedDelay 每次执行时间为上一次任务结束起向后推一个时间间隔,即每次执行时间为:initialDelay, initialDelay+executeTime+delay, initialDelay+2*executeTime+2*delay。由此可见,ScheduleAtFixedRate 是基于固定时间间隔进行任务调度,ScheduleWithFixedDelay 取决于每次任务执行的时间长短,是基于不固定时间间隔进行任务调度。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ScheduledExecutorService是Java中用于定时执行任务的接口。它是ExecutorService的子接口,提供了在指定的延迟后执行任务或定期执行任务的功能。 使用ScheduledExecutorService可以创建一个线程池,其中的线程可以按照指定的时间间隔执行任务。它提供了以下几种常用的方法: 1. schedule(Runnable command, long delay, TimeUnit unit):在指定的延迟时间后执行任务。 2. schedule(Callable<V> callable, long delay, TimeUnit unit):在指定的延迟时间后执行任务,并返回一个可以获取执行结果的Future对象。 3. scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit):在指定的初始延迟后开始执行任务,并以固定的时间间隔重复执行。 4. scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit):在指定的初始延迟后开始执行任务,并在每次执行完成后,等待指定的延迟时间后再次执行。 下面是一个简单示例: ```java import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; public class ScheduledTaskExample { public static void main(String[] args) { ScheduledExecutorService executor = Executors.newScheduledThreadPool(1); // 延迟5秒后执行任务 executor.schedule(() -> { System.out.println("任务执行"); }, 5, TimeUnit.SECONDS); // 初始延迟2秒,每隔3秒重复执行任务 executor.scheduleAtFixedRate(() -> { System.out.println("定期执行任务"); }, 2, 3, TimeUnit.SECONDS); // 等待一段时间后关闭线程池 try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } executor.shutdown(); } } ``` 上述示例代码创建了一个ScheduledExecutorService线程池,其中包含一个线程。通过schedule方法和scheduleAtFixedRate方法分别定义了两个定时任务,并在一段时间后关闭了线程池。 注意,在使用ScheduledExecutorService时,需要手动调用shutdown方法来关闭线程池,以释放资源。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值