Tags
- oracle
- postman collection variables
- 다빈치 리졸브
- Interaction developer
- emplace_back
- Android
- c#
- postman
- postman session
- Unity
- postman tests
- web developer
- 프런트엔드
- LSL_Script
- postman automations
- postman collection
- postman pre-request
- Java
- 좋은 개발자
- postman excel
- postman csv
- solidity
- Android/iOS Developer
- Intellij
- C++
- UI/UX Engineer
- Front-end developer
- MFC
- postman html parse
- 우수한 프런트 개발자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
목록자꾸까먹어 (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