blob: 46aaff4d700e965be20f2ef174d6716882cc3b29 [file] [log] [blame]
Roman Elizarov8a4a8e12017-03-09 19:52:58 +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-reactive.md by Knit tool. Do not edit.
Roman Elizarova9687a32018-06-29 17:28:38 +030018package kotlinx.coroutines.experimental.rx2.guide.operators04
Roman Elizarov8a4a8e12017-03-09 19:52:58 +030019
Roman Elizarov95981f32017-03-17 18:12:04 +030020import kotlinx.coroutines.experimental.*
21import kotlinx.coroutines.experimental.reactive.*
Roman Elizarov9fe5f462018-02-21 19:05:52 +030022import org.reactivestreams.*
23import kotlin.coroutines.experimental.*
Roman Elizarov8a4a8e12017-03-09 19:52:58 +030024
25fun <T> Publisher<Publisher<T>>.merge(context: CoroutineContext) = publish<T>(context) {
Roman Elizarov86349be2017-03-17 16:47:37 +030026 consumeEach { pub -> // for each publisher received on the source channel
Roman Elizarov43e3af72017-07-21 16:01:31 +030027 launch(coroutineContext) { // launch a child coroutine
Roman Elizarov86349be2017-03-17 16:47:37 +030028 pub.consumeEach { send(it) } // resend all element from this publisher
Roman Elizarov8a4a8e12017-03-09 19:52:58 +030029 }
30 }
31}
32
33fun rangeWithInterval(context: CoroutineContext, time: Long, start: Int, count: Int) = publish<Int>(context) {
34 for (x in start until start + count) {
35 delay(time) // wait before sending each number
36 send(x)
37 }
38}
39
40fun testPub(context: CoroutineContext) = publish<Publisher<Int>>(context) {
41 send(rangeWithInterval(context, 250, 1, 4)) // number 1 at 250ms, 2 at 500ms, 3 at 750ms, 4 at 1000ms
42 delay(100) // wait for 100 ms
43 send(rangeWithInterval(context, 500, 11, 3)) // number 11 at 600ms, 12 at 1100ms, 13 at 1600ms
44 delay(1100) // wait for 1.1s - done in 1.2 sec after start
45}
46
47fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarov43e3af72017-07-21 16:01:31 +030048 testPub(coroutineContext).merge(coroutineContext).consumeEach { println(it) } // print the whole stream
Roman Elizarov8a4a8e12017-03-09 19:52:58 +030049}