อินเทอร์เฟซ ScheduledExecutorService
อินเทอร์เฟซ java.util.concurrent.ScheduledExecutorService เป็นอินเทอร์เฟซย่อยของอินเตอร์เฟส ExecutorService และรองรับการดำเนินการงานในอนาคตและ / หรือเป็นระยะ ๆ
วิธีการบริการตามกำหนดการ
ซีเนียร์ | วิธีการและคำอธิบาย |
---|---|
1 | <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) สร้างและเรียกใช้งาน ScheduledFuture ที่เปิดใช้งานหลังจากความล่าช้าที่กำหนด |
2 | ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) สร้างและดำเนินการแอ็คชั่น one-shot ที่เปิดใช้งานหลังจากดีเลย์ที่กำหนด |
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