looking into the implementation of Job() method, i...
# coroutines
m
looking into the implementation of Job() method, it will create
active
job by default
a
Documentation https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job/index.html says there can be optional
New
status for which
isActive == false
Usually, a job is created in active state (it is created and started). However, coroutine builders that provide an optional start parameter create a coroutine in new state when this parameter is set to CoroutineStart.LAZY. Such a job can be made active by invoking start or join.
Oh, now I see that you explicitly create a job