commonTest.channels.TestBroadcastChannelKind.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.channels
enum class TestBroadcastChannelKind {
ARRAY_1 {
override fun create(): BroadcastChannel = BroadcastChannel(1)
override fun toString(): String = "ArrayBroadcastChannel(1)"
},
ARRAY_10 {
override fun create(): BroadcastChannel = BroadcastChannel(10)
override fun toString(): String = "ArrayBroadcastChannel(10)"
},
CONFLATED {
override fun create(): BroadcastChannel = ConflatedBroadcastChannel()
override fun toString(): String = "ConflatedBroadcastChannel"
override val isConflated: Boolean get() = true
}
;
abstract fun create(): BroadcastChannel
open val isConflated: Boolean get() = false
}