Skip to content

Commit b61c8cf

Browse files
authored
dataconnect(docs): QueryRef/QuerySubscription: kdoc improvements, especially adding BoM version (#8196)
1 parent 1476cf7 commit b61c8cf

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/QueryRef.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ public interface QueryRef<Data, Variables> : OperationRef<Data, Variables> {
7676
*
7777
* ### Realtime updates (May 2026)
7878
*
79-
* Starting with SDK version 17.3.0 (May 2026) query subscriptions gained support for realtime
80-
* updates. See
79+
* Starting with SDK version 17.3.0 (Firebase BoM 34.13.0, May 2026) query subscriptions gained
80+
* support for realtime updates. See
8181
* [Get real-time updates from SQL Connect](https://firebase.google.com/docs/sql-connect/realtime)
8282
* for details about this feature in the entire product, and [QuerySubscription] for details
83-
* specified to Android.
83+
* specific to Android.
8484
*
8585
* Prior to SDK version 17.3.0, updates were _not_ realtime, and were _not_ pushed from the
8686
* server. Instead, the notifications were sent whenever the query was explicitly executed by

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/QuerySubscription.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import kotlinx.coroutines.flow.*
2424
*
2525
* ### Realtime updates (May 2026)
2626
*
27-
* Starting with SDK version 17.3.0 (May 2026) query subscriptions gained support for realtime
28-
* updates. See
27+
* Starting with SDK version 17.3.0 (Firebase BoM 34.13.0, May 2026) query subscriptions gained
28+
* support for realtime updates. See
2929
* [Get real-time updates from SQL Connect](https://firebase.google.com/docs/sql-connect/realtime)
30-
* for details about this feature in the entire product.
30+
* for details.
3131
*
3232
* Prior to SDK version 17.3.0, updates were _not_ realtime, and were _not_ pushed from the server.
3333
* Instead, the notifications were sent whenever the query was explicitly executed by calling
@@ -73,8 +73,8 @@ public interface QuerySubscription<Data, Variables> {
7373
/**
7474
* A cold flow that collects the query results as they become available.
7575
*
76-
* Starting with SDK version 17.3.0 (May 2026) query subscriptions gained support for realtime
77-
* updates. See [QuerySubscription] for details.
76+
* Starting with SDK version 17.3.0 (Firebase BoM 34.13.0, May 2026) query subscriptions gained
77+
* support for realtime updates. See [QuerySubscription] for details.
7878
*/
7979
public val flow: Flow<QuerySubscriptionResult<Data, Variables>>
8080

0 commit comments

Comments
 (0)