Java併發ScheduledExecutorService接口

java.util.concurrent.ScheduledExecutorService接口是ExecutorService接口的子接口,並支持將來和/或定期執行任務。

ScheduledExecutorService接口的方法

序號

方法

描述

1

ScheduledFuture schedule(Callable callable, long delay, TimeUnit unit)

創建並執行在給定延遲後啓用ScheduledFuture

2

ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit)

創建並執行在給定延遲後啓用的單次操作。

3

ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)

創建並執行在給定的初始延遲之後,隨後以給定的時間段首先啓用的週期性動作; 那就是執行會在initialDelay之後開始,然後是initialDelay + period,然後是initialDelay + 2 * period,等等。

4

ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit)

創建並執行在給定的初始延遲之後首先啓用的定期動作,隨後在一個執行的終止和下一個執行的開始之間給定的延遲。

實例

以下TestThread程序顯示了基於線程的環境中ScheduledExecutorService接口的使用。

import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

public class TestThread {

   public static void main(final String[] arguments) throws InterruptedException {
      final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);

      final ScheduledFuture<?> beepHandler = 
         scheduler.scheduleAtFixedRate(new BeepTask(), 2, 2, TimeUnit.SECONDS);

      scheduler.schedule(new Runnable() {
         @Override
         public void run() {
            beepHandler.cancel(true);
            scheduler.shutdown();            
         }
      }, 10, TimeUnit.SECONDS);
   }  

   static class BeepTask implements Runnable {
      public void run() {
         System.out.println("beep");      
      }
   }
}

這將產生以下結果 -

beep
beep
beep
beep
beep