File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
objectbox-kotlin/src/main/kotlin/io/objectbox/kotlin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ fun <T> SubscriptionBuilder<T>.toFlow(): Flow<T> = callbackFlow {
33
33
}
34
34
35
35
/* *
36
- * Shortcut for `BoxStore.subscribe(forClass).toFlow()`, see [toFlow].
36
+ * Shortcut for `BoxStore.subscribe(forClass).toFlow()`, see [BoxStore.subscribe] and [ toFlow] for details .
37
37
*/
38
38
@ExperimentalCoroutinesApi
39
39
fun <T > BoxStore.flow (forClass : Class <T >): Flow <Class <T >> = this .subscribe(forClass).toFlow()
40
40
41
41
/* *
42
- * Shortcut for `query.subscribe().toFlow()`, see [toFlow].
42
+ * Shortcut for `query.subscribe().toFlow()`, see [Query.subscribe] and [ toFlow] for details .
43
43
*/
44
44
@ExperimentalCoroutinesApi
45
45
fun <T > Query<T>.flow (): Flow <MutableList <T >> = this @flow.subscribe().toFlow()
You can’t perform that action at this time.
0 commit comments