public interface FirebaseRestDatabase
FirebaseRestDatabase is a base representation of a Firebase database. It
manages all resources for the FirebaseRestReference implementations as well as
handles authentication for that database.| Modifier and Type | Method and Description |
|---|---|
FirebaseRestEventStream |
getEventStream(java.lang.String path) |
FirebaseRestReference |
getReference(java.lang.String path)
Returns a
FirebaseRestReference object representing the provided location of the database. |
FirebaseRestReference getReference(java.lang.String path)
FirebaseRestReference object representing the provided location of the database.
With this reference object, the consumer can read or modify the data at this location, or travers
further down or up the tree.path - The location within database to create a reference for.FirebaseRestReference for the given path.FirebaseRestEventStream getEventStream(java.lang.String path)
path - The location within database to create a event stream for.