We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb4016 commit 5cd5580Copy full SHA for 5cd5580
kotlinx-coroutines-core/common/src/flow/AbstractSharedFlow.kt
@@ -10,7 +10,6 @@ import kotlinx.coroutines.flow.internal.*
10
import kotlinx.coroutines.internal.*
11
import kotlin.coroutines.*
12
13
-// Note: Always guarantee FIFO processing of slots by keeping a doubly-linked list of them
14
internal abstract class AbstractSharedFlowSlot<F> {
15
abstract fun allocateLocked(flow: F): Boolean
16
abstract fun freeLocked(flow: F): List<Continuation<Unit>>? // returns a list of continuation to resume after lock
0 commit comments