blob: 8649ecb9c6ccedef708aaf4f242186893f03cc61 [file] [log] [blame]
Roman Elizarovf16fd272017-02-07 11:26:00 +03001/*
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03002 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
Roman Elizarovf16fd272017-02-07 11:26:00 +03003 */
4
Roman Elizarov2f6d7c92017-02-03 15:16:07 +03005// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
Roman Elizarova9687a32018-06-29 17:28:38 +03006package kotlinx.coroutines.experimental.guide.context08
Roman Elizarov2f6d7c92017-02-03 15:16:07 +03007
Roman Elizarov96695782017-10-01 10:48:15 -07008import kotlinx.coroutines.experimental.*
Roman Elizarov9fe5f462018-02-21 19:05:52 +03009import kotlin.coroutines.experimental.*
Roman Elizarov2f6d7c92017-02-03 15:16:07 +030010
Roman Elizarov8b38fa22017-09-27 17:44:31 +030011fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarov66f018c2017-09-29 21:39:03 +030012 // launch a coroutine to process some kind of incoming request
13 val request = launch {
Roman Elizarov8b38fa22017-09-27 17:44:31 +030014 repeat(3) { i -> // launch a few children jobs
15 launch(coroutineContext) {
16 delay((i + 1) * 200L) // variable delay 200ms, 400ms, 600ms
17 println("Coroutine $i is done")
18 }
19 }
20 println("request: I'm done and I don't explicitly join my children that are still active")
Roman Elizarov2f6d7c92017-02-03 15:16:07 +030021 }
Roman Elizarov8b38fa22017-09-27 17:44:31 +030022 request.join() // wait for completion of the request, including all its children
23 println("Now processing of the request is complete")
Roman Elizarov2f6d7c92017-02-03 15:16:07 +030024}