Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- android studio
- Schedule
- fixedRateTimer
- 파이썬
- cache
- jsoup
- 객체지향
- InteliJ
- HTML Parser
- 안드로이드 스튜디오 설치
- GIT
- 파이참
- 안드로이드
- data class
- Android IDE
- sealed class
- Android
- Anaconda
- android studio 설치
- jvm
- Kotlin
- 크롤링
- 안드로이드 스튜디오
- thread pool
- aging
- PyCharm
- generics
- process
- GC
Archives
- Today
- Total
목록fixedRateTimer (1)
탐비의 개발 낙서장
[Kotlin] 코틀린 Timer
Timer Timer 일정 주기마다 동작을 실행하기 위해 Timer를 사용할 수 있습니다. 원래 JAVA에서는 new TimerTask()를 통해 별도로 TimerTask 객체를 선언해주어야 했지만, 코틀린에서는 아래와 같이 편하게 사용할 수 있게 되었습니다. import kotlin.concurrent.timer fun run(){ timer(period = 1000, initialDelay = 1000){ // 1초 후부터 1초 간격 실행 // SomethingToDo.. if (isStopCondition()) cancel() } } 위 코드와 같이 kotlin.concurrent.timer를 import 한 후, 밀리세컨드 단위로 시간을 입력해 실행 타이머를 실행합니다. 만약 작업이 완료되어, 종..
프로그래밍/Kotlin
2021. 8. 2. 23:49