This is an API sample to showcase how to implement observable queries in Room, with RxJava's Flowable objects.
The sample app shows an editable user name, stored in the database.
The database is created using Room and has one entity: a User
. Room generates the corresponding SQLite table at
runtime.
Queries are executed in the UserDao
class. The user retrieval is done via an observable query implemented using a
Flowable
. Every time the user data is updated, the Flowable object will emit automatically, allowing to update the UI
based on the latest data. The Flowable will emit only when the query result contains at least a row. When there is no
data to match the query, the Flowable will not emit.
The app has a main Activity that displays the data. The Activity works with a ViewModel to do the following:
- subscribe to the emissions of the user name and update the UI every time there is a new user name emitted
- notify the ViewModel when the "Update" button is pressed and pass the new user name. The ViewModel works with the data source to get and save the data.
Room guarantees that the observable query will be triggered on a background thread. In the Activity, the Flowable events are set to be received on the main thread, so the UI can be updated. The insert query is synchronous so it's wrapped in a Completable and executed on a background thread. On completion, the Activity is notified on the main thread.
Copyright (C) 2017 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.