Skip to content

Commit 1629a92

Browse files
ObjectBoxgitbook-bot
ObjectBox
authored andcommitted
GITBOOK-574: Data observers: update description: also for Dart
1 parent 5456234 commit 1629a92

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

data-observers-and-rx.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
description: >-
3-
How to observe box and query changes using ObjectBox for Java, how to
3+
How to observe box and query changes using ObjectBox with Java or Dart, how to
44
integrate with RxJava.
55
---
66

77
# Data Observers & Rx
88

99
On this page:
1010

11-
*  [ObjectBox for Java - Data Observers and Reactive Extensions](data-observers-and-rx.md#objectbox-for-java-data-observers-and-reactive-extensions)
12-
* [ ObjectBox for Flutter/Dart - Reactive Queries](data-observers-and-rx.md#flutter-dart)
11+
* [ObjectBox Java - Data Observers and Reactive Extensions](data-observers-and-rx.md#objectbox-for-java-data-observers-and-reactive-extensions)
12+
* [ObjectBox Dart - Reactive Queries](data-observers-and-rx.md#flutter-dart)
1313

14-
## ObjectBox for Java - Data Observers and Reactive Extensions
14+
## ObjectBox Java - Data Observers and Reactive Extensions
1515

1616
ObjectBox for Java makes it easy for your app to react to data changes by providing:
1717

@@ -321,7 +321,7 @@ disposable = RxQuery.observable(query).subscribe(this);
321321

322322
 The extension library is open-source and available [GitHub](https://github.com/objectbox/objectbox-java/tree/master/objectbox-rxjava).
323323

324-
## ObjectBox for Flutter/Dart - Reactive Queries <a href="#flutter-dart" id="flutter-dart"></a>
324+
## ObjectBox Dart - Reactive Queries <a href="#flutter-dart" id="flutter-dart"></a>
325325

326326
You can build a Stream from a query to get notified any time there is a change to the box of any of the queried entities:
327327

queries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,9 @@ query.close();
535535
{% endtab %}
536536
{% endtabs %}
537537

538-
### Observe or listen to results
538+
### Observe or listen to changes
539539

540-
To observe or listen to changes to the results of a query, see the data observers page:
540+
To learn how to observe or listen to changes to the results of a query, see the data observers page:
541541

542542
{% content-ref url="data-observers-and-rx.md" %}
543543
[data-observers-and-rx.md](data-observers-and-rx.md)

0 commit comments

Comments
 (0)