Java에서 타이머를 설정하는 방법
데이터베이스에 접속을 시도하고 접속에 문제가 있는 경우 예외를 발생시키는 타이머를 2분간 설정하는 방법
그래서 그 대답의 첫 번째 부분은 내가 처음에 이렇게 해석했고 몇몇 사람들은 도움이 되는 것 같았기 때문에 그 주제가 요구하는 것을 어떻게 하느냐이다.그 질문은 그 이후로 명확해졌고 나는 그것에 대한 답변을 연장했다.
타이머 설정
먼저 타이머를 생성해야 합니다(이거는java.util
버전 여기) :
import java.util.Timer;
..
Timer timer = new Timer();
작업을 한 번 실행하려면:
timer.schedule(new TimerTask() {
@Override
public void run() {
// Your database code here
}
}, 2*60*1000);
// Since Java-8
timer.schedule(() -> /* your database code here */, 2*60*1000);
작업 기간이 지난 후 작업을 반복하려면 다음 절차를 수행합니다.
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// Your database code here
}
}, 2*60*1000, 2*60*1000);
// Since Java-8
timer.scheduleAtFixedRate(() -> /* your database code here */, 2*60*1000, 2*60*1000);
작업 시간 초과 만들기
특정 시간 동안 작업을 수행하려고 하는 명확한 질문의 내용을 구체적으로 수행하려면 다음을 수행할 수 있습니다.
ExecutorService service = Executors.newSingleThreadExecutor();
try {
Runnable r = new Runnable() {
@Override
public void run() {
// Database task
}
};
Future<?> f = service.submit(r);
f.get(2, TimeUnit.MINUTES); // attempt the task for two minutes
}
catch (final InterruptedException e) {
// The thread was interrupted during sleep, wait or join
}
catch (final TimeoutException e) {
// Took too long!
}
catch (final ExecutionException e) {
// An exception from within the Runnable task
}
finally {
service.shutdown();
}
이 작업은 작업이 2분 이내에 완료되면 예외를 제외하고 정상적으로 실행됩니다.이 시간보다 오래 실행되면 타임아웃이예외는 투척됩니다.
한 가지 문제는 타임아웃이 발생하지만이 작업은 2분 후에 실제로 계속 실행됩니다.단, 데이터베이스 또는 네트워크 접속은 최종적으로 타임아웃되어 스레드에 예외가 느려질 수 있습니다.다만, 그 때까지는 자원을 소비할 가능성이 있습니다.
이것을 사용하다
long startTime = System.currentTimeMillis();
long elapsedTime = 0L.
while (elapsedTime < 2*60*1000) {
//perform db poll/check
elapsedTime = (new Date()).getTime() - startTime;
}
//Throw your exception
좋아, 이제 네 문제를 알 것 같아.Future를 사용하여 작업을 시도한 후 아무 일도 일어나지 않은 경우 잠시 후 타임아웃할 수 있습니다.
예:
FutureTask<Void> task = new FutureTask<Void>(new Callable<Void>() {
@Override
public Void call() throws Exception {
// Do DB stuff
return null;
}
});
Executor executor = Executors.newSingleThreadScheduledExecutor();
executor.execute(task);
try {
task.get(5, TimeUnit.SECONDS);
}
catch(Exception ex) {
// Handle your exception
}
new java.util.Timer().schedule(new TimerTask(){
@Override
public void run() {
System.out.println("Executed...");
//your code here
//1000*5=5000 mlsec. i.e. 5 seconds. u can change accordngly
}
},1000*5,1000*5);
[안드로이드] Java를 사용하여 Android에 타이머를 구현하려는 경우
작업을 수행하려면 이와 같은 UI 스레드를 사용해야 합니다.
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
ActivityName.this.runOnUiThread(new Runnable(){
@Override
public void run() {
// do something
}
});
}
}, 2000));
언급URL : https://stackoverflow.com/questions/4044726/how-to-set-a-timer-in-java
'programing' 카테고리의 다른 글
Mocha를 사용한 Vuejs 테스트: 컴포넌트가 요소에 장착되지 않음 (0) | 2022.08.15 |
---|---|
최소 2배 값(C/C++) (0) | 2022.08.15 |
Vuex getter 반환이 정의되지 않음 (0) | 2022.08.15 |
Maven – 항상 소스 및 자바독 다운로드 (0) | 2022.08.15 |
각 항목의 Vuex getter (0) | 2022.08.15 |