We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68f835 commit 4e2b553Copy full SHA for 4e2b553
1 file changed
objectbox-kotlin/src/main/kotlin/io/objectbox/kotlin/Flow.kt
@@ -33,13 +33,13 @@ fun <T> SubscriptionBuilder<T>.toFlow(): Flow<T> = callbackFlow {
33
}
34
35
/**
36
- * Shortcut for `BoxStore.subscribe(forClass).toFlow()`, see [toFlow].
+ * Shortcut for `BoxStore.subscribe(forClass).toFlow()`, see [BoxStore.subscribe] and [toFlow] for details.
37
*/
38
@ExperimentalCoroutinesApi
39
fun <T> BoxStore.flow(forClass: Class<T>): Flow<Class<T>> = this.subscribe(forClass).toFlow()
40
41
42
- * Shortcut for `query.subscribe().toFlow()`, see [toFlow].
+ * Shortcut for `query.subscribe().toFlow()`, see [Query.subscribe] and [toFlow] for details.
43
44
45
fun <T> Query<T>.flow(): Flow<MutableList<T>> = this@flow.subscribe().toFlow()
0 commit comments