To answer my own question. Documentation on the `J...
# coroutines
b
To answer my own question. Documentation on the
Job
interface:
Copy code
/**
 * Returns `true` when this job has completed for any reason. A job that was cancelled and has
 * finished its execution is also considered complete. Job becomes complete only after
 * all its [children] complete.
 */
public actual val isCompleted: Boolean

/**
 * Suspends coroutine until this job is complete...
 */
public actual suspend fun join()
As such, I would assume yes?