Tags
- LSL_Script
- C++
- postman tests
- Interaction developer
- postman pre-request
- postman collection
- emplace_back
- oracle
- c#
- postman collection variables
- Android
- Android/iOS Developer
- Unity
- Front-end developer
- postman csv
- UI/UX Engineer
- postman session
- 우수한 프런트 개발자
- postman html parse
- web developer
- 좋은 개발자
- Intellij
- Java
- MFC
- 프런트엔드
- postman automations
- postman excel
- solidity
- postman
- 다빈치 리졸브
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Archives
- Today
- Total
목록2025/03 (1)
david's daily developer note
[BE] 일정 시간 후에 수행하는 조각 코드 java
아래 코드는 일정 시간 이후에 비동기적인 작업 수행이 필요할 때 사용한다.private void close(String reason) { new java.util.Timer().schedule(new java.util.TimerTask() { @Override public void run() { reconnect(); } }, 5000); // Delay in milliseconds} private void reconnect() { //say something}1. Timer 인스턴스를 생성하고 백그라운드 스레드를 활용 예약된 작업을 실행1. TimerTask 추상 클래스를 재정의하여 schedule()..
[Develop] Web/Back-end
2025. 3. 4. 23:07