Home
last modified time | relevance | path

Searched refs:SubscriptionCountStateFlow (Results 1 – 1 of 1) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DAbstractSharedFlow.kt24 private var _subscriptionCount: SubscriptionCountStateFlow? = null // init on first need
29 _subscriptionCount ?: SubscriptionCountStateFlow(nCollectors).also { in <lambda>()
41 val subscriptionCount: SubscriptionCountStateFlow? in createSlot()
72 val subscriptionCount: SubscriptionCountStateFlow? in freeSlot()
118 private class SubscriptionCountStateFlow(initialValue: Int) : StateFlow<Int>, class