ScheduledExecutorService 인터페이스
java.util.concurrent.ScheduledExecutorService 인터페이스는 ExecutorService 인터페이스의 하위 인터페이스이며 향후 및 / 또는주기적인 작업 실행을 지원합니다.
ScheduledExecutorService 메서드
Sr. 아니. | 방법 및 설명 |
---|---|
1 | <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) 지정된 지연 후 활성화되는 ScheduledFuture를 만들고 실행합니다. |
2 | ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) 지정된 지연 후 활성화되는 원샷 작업을 생성하고 실행합니다. |
삼 | 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