Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1 KB

File metadata and controls

31 lines (24 loc) · 1 KB

RxJava 2 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:

  • Flowable
  • Observable
  • Single

For example to get query results and subscribe to future updates (Object changes will automatically emmit new data):

Query query = box.query().build();
RxQuery.observable(query).subscribe(this);

Adding the library to your project

Grab via Gradle:

implementation "io.objectbox:objectbox-rxjava:$objectboxVersion"

Links

Data Observers and Rx Documentation

Note App example