blob: b0587179f6075f70c718f29a19ed10da9404ac28 [file] [log] [blame]
Roman Elizarovf16fd272017-02-07 11:26:00 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Roman Elizarovb3d55a52017-02-03 12:47:21 +030017// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
Roman Elizarovfa7723e2017-02-06 11:17:51 +030018package guide.cancel.example03
Roman Elizarov7deefb82017-01-31 10:33:17 +030019
Roman Elizarov96695782017-10-01 10:48:15 -070020import kotlinx.coroutines.experimental.*
Roman Elizarov7deefb82017-01-31 10:33:17 +030021
22fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarov24cd6542017-08-03 21:20:04 -070023 val startTime = System.currentTimeMillis()
Roman Elizarov66f018c2017-09-29 21:39:03 +030024 val job = launch {
Roman Elizarov24cd6542017-08-03 21:20:04 -070025 var nextPrintTime = startTime
Roman Elizarov7deefb82017-01-31 10:33:17 +030026 var i = 0
27 while (isActive) { // cancellable computation loop
Roman Elizarov24cd6542017-08-03 21:20:04 -070028 // print a message twice a second
29 if (System.currentTimeMillis() >= nextPrintTime) {
Roman Elizarov7deefb82017-01-31 10:33:17 +030030 println("I'm sleeping ${i++} ...")
Roman Elizarov24cd6542017-08-03 21:20:04 -070031 nextPrintTime += 500L
Roman Elizarov7deefb82017-01-31 10:33:17 +030032 }
33 }
34 }
35 delay(1300L) // delay a bit
Roman Elizarov1293ccd2017-02-01 18:49:54 +030036 println("main: I'm tired of waiting!")
Roman Elizarov8b38fa22017-09-27 17:44:31 +030037 job.cancelAndJoin() // cancels the job and waits for its completion
Roman Elizarov1293ccd2017-02-01 18:49:54 +030038 println("main: Now I can quit.")
Roman Elizarovb3d55a52017-02-03 12:47:21 +030039}