Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드 라이선스 종류
- 안드로이드 레트로핏 crud
- 객체
- Rxjava Observable
- 클래스
- android ar 개발
- 스택 큐 차이
- 스택 자바 코드
- 2022 플러터 안드로이드 스튜디오
- 안드로이드 os 구조
- 2022 플러터 설치
- 안드로이드 유닛 테스트
- 플러터 설치 2022
- android retrofit login
- 멤버변수
- 안드로이드 레트로핏 사용법
- jvm이란
- jvm 작동 원리
- 서비스 vs 쓰레드
- 안드로이드 라이선스
- rxjava disposable
- ar vr 차이
- 자바 다형성
- 안드로이드 유닛 테스트 예시
- rxjava cold observable
- rxjava hot observable
- 서비스 쓰레드 차이
- 안드로이드 유닛테스트란
- ANR이란
- 큐 자바 코드
Archives
- Today
- Total
목록2024/03/21 (1)
나만을 위한 블로그
[코틀린 코루틴] 13. 코루틴 스코프 만들기
CoroutineScope 팩토리 함수 CoroutineScope는 coroutineContext를 유일 프로퍼티로 갖는 인터페이스다. public interface CoroutineScope { public val coroutineContext: CoroutineContext } CoroutineScope 인터페이스를 구현한 클래스를 만들고 내부에서 코루틴 빌더를 직접 호출할 수 있다. import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Job import kotlinx.coroutines.launch import kotlin.coroutines.CoroutineContext class SomeClass: CoroutineScope {..
책/코틀린 코루틴
2024. 3. 21. 22:19