seniorKotlin
What is the difference between launch and async in coroutines?
Updated May 16, 2026
Short answer
launch returns Job; async returns Deferred result.
Deep explanation
launch is used for fire-and-forget operations, while async is used when a result is needed. async must be awaited using await() to retrieve the result. Both are coroutine builders but differ in return type and usage patterns.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro