flow

@ExperimentalCoroutinesApi
fun <T> BoxStore.flow(forClass: Class<T>): Flow<Class<T>>

Shortcut for BoxStore.subscribe(forClass).toFlow(), see toFlow.


@ExperimentalCoroutinesApi
fun <T> Query<T>.flow(): Flow<MutableList<T>>

Shortcut for query.subscribe().toFlow(), see toFlow.