| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
ℹ️ This library will receive no new features. Development will continue with the RxJava 3 APIs for ObjectBox.
While ObjectBox has data observers and reactive extensions built-in, this project adds RxJava 2 support.
For general object changes, you can use RxBoxStore to create an Observable.
RxQuery allows you to interact with ObjectBox Query objects using:
For example to get query results and subscribe to future updates (Object changes will automatically emmit new data):
Query<User> query = box.query().build();
RxQuery.observable(query).subscribe(this);Grab via Gradle:
implementation "io.objectbox:objectbox-rxjava:$objectboxVersion"| Back | FazBrowse Home | New Git URL |