RxJava wrapper for Firebase for Android. This library allow you to use Observable model of RxJava with Firebase instead of all the different kind of listeners.
Currently, the library supports following from the Firebase Suite:
- Firebase Realtime Database
- Firebase Authentication.
Setup the Firebase project and SDK as per the docs.
Use RxDatabase and RxAuthentication classes to get the RxJava equivalent for similar APIs in official library.
Both the classes have public static
methods for such tasks.
RxDatabase.setValue(databaseReference, value)
.subscribe(isSuccessful -> Log.v(TAG, "Write operation: " + isSuccessful));
RxDatabase.getValueEventListener(databaseReference)
.subscribe(dataSnapshot -> {
// Do Something
}, e -> Log.e(TAG, e.getMessage(), e));
RxDatabase.getChildEventListener(databaseReference)
.subscribe(childEvent -> {
// Do Something
// Notice ChildEvent object instead of DataSnapshot type
}, e -> Log.e(TAG, e.getMessage(), e))
RxAuthentication.getAuthListener(FirebaseAuth.getInstance())
.subscribe(auth -> {
FirebaseUser user = auth.getCurrentUser();
if (user != null) {
// User is signed in
Log.d(TAG, "onAuthStateChanged:signed_in:" + user.getUid());
} else {
// User is signed out
Log.d(TAG, "onAuthStateChanged:signed_out");
}
// ...
});
Add the following line to your build.gradle file.
compile 'com.github.alokagrawal8.rxfirebase:rx-firebase:0.3.0@aar'
Copyright 2016 Alok Bansal
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.