StateFlow 和 SharedFlow

StateFlowSharedFlowFlow API,它们使流能够以最佳方式发出状态更新并将值发出给多个使用者。

StateFlow

StateFlow 是一个状态持有可观察流,它向其使用者发出当前状态和新状态更新。当前状态值也可以通过其 value 属性读取。要更新状态并将其发送到流,请将新值分配给 MutableStateFlow 类的 value 属性。

在 Android 中,StateFlow 非常适合需要维护可观察的易变状态的类。

按照 Kotlin 流 中的示例,可以从 LatestNewsViewModel 中公开 StateFlow,以便 View 可以监听 UI 状态更新,并且本质上使屏幕状态在配置更改时得以保留。

class LatestNewsViewModel(
    private val newsRepository: NewsRepository
) : ViewModel() {

    // Backing property to avoid state updates from other classes
    private val _uiState = MutableStateFlow(LatestNewsUiState.Success(emptyList()))
    // The UI collects from this StateFlow to get its state updates
    val uiState: StateFlow<LatestNewsUiState> = _uiState

    init {
        viewModelScope.launch {
            newsRepository.favoriteLatestNews
                // Update View with the latest favorite news
                // Writes to the value property of MutableStateFlow,
                // adding a new element to the flow and updating all
                // of its collectors
                .collect { favoriteNews ->
                    _uiState.value = LatestNewsUiState.Success(favoriteNews)
                }
        }
    }
}

// Represents different states for the LatestNews screen
sealed class LatestNewsUiState {
    data class Success(val news: List<ArticleHeadline>): LatestNewsUiState()
    data class Error(val exception: Throwable): LatestNewsUiState()
}

负责更新 MutableStateFlow 的类是生产者,而所有从 StateFlow 中收集的类是使用者。与使用 flow 构建器构建的流不同,StateFlow流:从流中收集不会触发任何生产者代码。 StateFlow 始终处于活动状态并在内存中,只有在没有来自垃圾回收根的其他引用时,它才会符合垃圾回收条件。

当新的使用者开始从流中收集时,它会收到流中的最后一个状态以及任何后续状态。您可以在其他可观察类(例如 LiveData)中找到此行为。

View 会监听 StateFlow,就像监听任何其他流一样

class LatestNewsActivity : AppCompatActivity() {
    private val latestNewsViewModel = // getViewModel()

    override fun onCreate(savedInstanceState: Bundle?) {
        ...
        // Start a coroutine in the lifecycle scope
        lifecycleScope.launch {
            // repeatOnLifecycle launches the block in a new coroutine every time the
            // lifecycle is in the STARTED state (or above) and cancels it when it's STOPPED.
            repeatOnLifecycle(Lifecycle.State.STARTED) {
                // Trigger the flow and start listening for values.
                // Note that this happens when lifecycle is STARTED and stops
                // collecting when the lifecycle is STOPPED
                latestNewsViewModel.uiState.collect { uiState ->
                    // New value received
                    when (uiState) {
                        is LatestNewsUiState.Success -> showFavoriteNews(uiState.news)
                        is LatestNewsUiState.Error -> showError(uiState.exception)
                    }
                }
            }
        }
    }
}

要将任何流转换为 StateFlow,请使用 stateIn 中间运算符。

StateFlow、Flow 和 LiveData

StateFlowLiveData 有相似之处。两者都是可观察的数据持有类,并且在应用架构中使用时都遵循类似的模式。

但是请注意,StateFlowLiveData 的行为有所不同

  • StateFlow 需要在构造函数中传入初始状态,而 LiveData 则不需要。
  • LiveData.observe() 在视图进入 STOPPED 状态时会自动取消注册使用者,而从 StateFlow 或任何其他流中收集不会自动停止收集。要实现相同行为,您需要从 Lifecycle.repeatOnLifecycle 块中收集流。

使用 shareIn 使冷流变为热流

StateFlow 是一个流——只要流被收集或只要从垃圾回收根存在对它的任何其他引用,它就会保留在内存中。您可以使用 shareIn 运算符将冷流变为热流。

使用 Kotlin 流 中创建的 callbackFlow 作为示例,而不是让每个使用者创建新的流,您可以使用 shareIn 在使用者之间共享从 Firestore 检索到的数据。您需要传入以下内容

  • 一个 CoroutineScope,用于共享流。此范围应该比任何使用者都长,以使共享流在需要时保持活动状态。
  • 要重播给每个新使用者的项目数量。
  • 开始行为策略。
class NewsRemoteDataSource(...,
    private val externalScope: CoroutineScope,
) {
    val latestNews: Flow<List<ArticleHeadline>> = flow {
        ...
    }.shareIn(
        externalScope,
        replay = 1,
        started = SharingStarted.WhileSubscribed()
    )
}

在本例中,latestNews 流将最后一个发射的项重播到一个新的收集器,并只要 externalScope 存活且存在活动收集器,就会保持活动状态。 SharingStarted.WhileSubscribed() 启动策略在存在活动订阅者时保持上游生产者处于活动状态。其他启动策略也可用,例如 SharingStarted.Eagerly 立即启动生产者或 SharingStarted.Lazily 在第一个订阅者出现后启动共享并使流永远保持活动状态。

SharedFlow

shareIn 函数返回一个 SharedFlow,这是一个热流,它将值发射到所有从其收集的消费者。 SharedFlowStateFlow 的高度可配置的泛化。

您可以无需使用 shareIn 创建一个 SharedFlow。例如,您可以使用 SharedFlow 向应用程序的其他部分发送滴答声,以便所有内容以相同的时间周期性刷新。除了获取最新新闻之外,您可能还想刷新用户信息部分及其收藏的热门主题。在以下代码片段中, TickHandler 公开了一个 SharedFlow,以便其他类知道何时刷新其内容。与 StateFlow 一样,在类中使用 MutableSharedFlow 类型的支持属性将项发送到流

// Class that centralizes when the content of the app needs to be refreshed
class TickHandler(
    private val externalScope: CoroutineScope,
    private val tickIntervalMs: Long = 5000
) {
    // Backing property to avoid flow emissions from other classes
    private val _tickFlow = MutableSharedFlow<Unit>(replay = 0)
    val tickFlow: SharedFlow<Event<String>> = _tickFlow

    init {
        externalScope.launch {
            while(true) {
                _tickFlow.emit(Unit)
                delay(tickIntervalMs)
            }
        }
    }
}

class NewsRepository(
    ...,
    private val tickHandler: TickHandler,
    private val externalScope: CoroutineScope
) {
    init {
        externalScope.launch {
            // Listen for tick updates
            tickHandler.tickFlow.collect {
                refreshLatestNews()
            }
        }
    }

    suspend fun refreshLatestNews() { ... }
    ...
}

您可以通过以下方式自定义 SharedFlow 行为

  • replay 允许您为新的订阅者重新发送一定数量先前发射的值。
  • onBufferOverflow 允许您为缓冲区已满待发送项时指定策略。默认值为 BufferOverflow.SUSPEND,这会使调用者挂起。其他选项是 DROP_LATESTDROP_OLDEST

MutableSharedFlow 还具有一个 subscriptionCount 属性,其中包含活动收集器的数量,以便您可以相应地优化您的业务逻辑。 MutableSharedFlow 还包含一个 resetReplayCache 函数,如果您不想重播发送到流的最新信息。

其他流资源