All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonTest.channels.TestBroadcastChannelKind.kt Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
/*
 * 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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy