1. async { } 과 launch { } 차이
1>async는 return값이 존재한다. launch는 return 이 없다
2>async는 Deffered이며, launch 는 Job이다.
3>Deffered는 await() method를 지원함
2. job이 끝나는 시점은 join() 호출 이후가 된다.
3. 만약 다수의 job이 동시에 끝난 이후 어떤 작업을 하고자한다면 listOf(x,y,~~~).joinAll() 을 호출하면됨
'Android Dev > Compose' 카테고리의 다른 글
jcenter() deprecated에 따른 repository파일 부재(bad gate way) 문제 해결(ex : ucrop) (0) | 2022.03.04 |
---|---|
Classes trial, variable initializing (0) | 2022.02.28 |
Compose - fragment/navigation Trial (0) | 2021.12.26 |
compose에서 statusbar color(header 등) 변경 (0) | 2021.12.15 |
compose - TextField indicator(underline) customizing (0) | 2021.12.08 |