blob: aaedcb7a791009c75d1c553a2567accd2da6568d [file] [log] [blame]
Roman Elizarov32d95322017-02-09 15:57:31 +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
17// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
18package guide.compose.example04
19
20import kotlinx.coroutines.experimental.*
21import kotlin.system.measureTimeMillis
22
23suspend fun doSomethingUsefulOne(): Int {
24 delay(1000L) // pretend we are doing something useful here
25 return 13
26}
27
28suspend fun doSomethingUsefulTwo(): Int {
29 delay(1000L) // pretend we are doing something useful here, too
30 return 29
31}
32
33// The result type of asyncSomethingUsefulOne is Deferred<Int>
34fun asyncSomethingUsefulOne() = async(CommonPool) {
35 doSomethingUsefulOne()
36}
37
38// The result type of asyncSomethingUsefulTwo is Deferred<Int>
39fun asyncSomethingUsefulTwo() = async(CommonPool) {
40 doSomethingUsefulTwo()
41}
42
43// note, that we don't have `runBlocking` to the right of `main` in this example
44fun main(args: Array<String>) {
45 val time = measureTimeMillis {
46 // we can initiate async actions outside of a coroutine
47 val one = asyncSomethingUsefulOne()
48 val two = asyncSomethingUsefulTwo()
49 // but waiting for a result must involve either suspending or blocking.
50 // here we use `runBlocking { ... }` to block the main thread while waiting for the result
51 runBlocking {
52 println("The answer is ${one.await() + two.await()}")
53 }
54 }
55 println("Completed in $time ms")
56}