java.util.concurrent.ScheduledExecutorService
介面是ExecutorService
介面的子介面,並支援將來和/或定期執行任務。
序號 | 方法 | 描述 |
---|---|---|
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