effectedItemsByFlow

inline fun <T> CoroutineScope.effectedItemsByFlow(crossinline flowFactory: () -> Flow<T>): Items<T>

提供 CoroutineScope 和构建 Flow 的函数 flowFactory 来构建 Items.

不提供 Items.PreprocessingProperties, 取而代之的是自动将 Items.PreprocessingProperties 作用于 flowFactory 所构建出来的 Flow 实例上。

See also