| Interface | Description |
|---|---|
| FirebaseRestDatabase |
A
FirebaseRestDatabase is a base representation of a Firebase database. |
| FirebaseRestDatabaseFactory |
A factory to create
FirebaseRestDatabase instances. |
| FirebaseRestEventStream |
A
FirebaseRestEventStream represents a specific location within a Firebase database and allows
for listening to change events like data being set or updated.This interface is a mixture of Firebase's Java and Javascript API, using similar syntax as the Java (Android) API but returning a Promise to allow for a more functional implementation of asynchronous requests. |
| FirebaseRestReference |
A
FirebaseRestReference represents a specific location within a Firebase database and allows
for operations to be executed on this location using Firebase's REST API.This interface is a mixture of Firebase's Java and Javascript API, using similar syntax as the Java (Android) API but returning a Promise to allow for a more functional implementation of asynchronous requests. |
| Class | Description |
|---|---|
| BaseFirebaseRestDatabaseFactory |
FirebaseRestDatabaseFactory implementation using AsyncHttpClient as the HTTP
transport library. |
| ServerValues |
This class contains all Firebase server values such as a timestamp.
|