Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (9 loc) · 488 Bytes

File metadata and controls

13 lines (9 loc) · 488 Bytes

ORMLite-RxJava

A collection of thin RxJava wrappers around query methods in my fork of ormlite-core. If you prefer not to use my fork, since it is deprecated, just delete the methods referencing non-existing methods.

It is recommended to use a separate Scheduler for operations on the database, for example:

private static final Scheduler DB = Scheduler.newThread();

void foo() {
  someObservable.subscribeOn(DB). [...]
}