blob: a1bbbcff6928aa22eab876457c73bd5f8833377e [file] [log] [blame]
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +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.
Roman Elizarova9687a32018-06-29 17:28:38 +030018package kotlinx.coroutines.experimental.guide.channel10
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030019
20import kotlinx.coroutines.experimental.*
21import kotlinx.coroutines.experimental.channels.*
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030022
23fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarovb5328a72018-06-06 18:31:21 +030024 val tickerChannel = ticker(delay = 100, initialDelay = 0) // create ticker channel
Vsevolod Tolstopyatov03d2ff72018-05-29 17:28:20 +030025 var nextElement = withTimeoutOrNull(1) { tickerChannel.receive() }
26 println("Initial element is available immediately: $nextElement") // Initial delay hasn't passed yet
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030027
Vsevolod Tolstopyatov03d2ff72018-05-29 17:28:20 +030028 nextElement = withTimeoutOrNull(50) { tickerChannel.receive() } // All subsequent elements has 100ms delay
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030029 println("Next element is not ready in 50 ms: $nextElement")
30
Roman Elizarovb5328a72018-06-06 18:31:21 +030031 nextElement = withTimeoutOrNull(60) { tickerChannel.receive() }
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030032 println("Next element is ready in 100 ms: $nextElement")
33
34 // Emulate large consumption delays
Roman Elizarovb5328a72018-06-06 18:31:21 +030035 println("Consumer pauses for 150ms")
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030036 delay(150)
37 // Next element is available immediately
Vsevolod Tolstopyatov03d2ff72018-05-29 17:28:20 +030038 nextElement = withTimeoutOrNull(1) { tickerChannel.receive() }
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030039 println("Next element is available immediately after large consumer delay: $nextElement")
40 // Note that the pause between `receive` calls is taken into account and next element arrives faster
Roman Elizarovb5328a72018-06-06 18:31:21 +030041 nextElement = withTimeoutOrNull(60) { tickerChannel.receive() }
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030042 println("Next element is ready in 50ms after consumer pause in 150ms: $nextElement")
43
Vsevolod Tolstopyatov03d2ff72018-05-29 17:28:20 +030044 tickerChannel.cancel() // indicate that no more elements are needed
Vsevolod Tolstopyatov1dbc25e2018-04-18 14:50:26 +030045}