| Package | Description |
|---|---|
| com.google.cloud.firestore |
| Modifier and Type | Method and Description |
|---|---|
com.google.api.core.ApiFuture<DocumentSnapshot> |
DocumentReference.get()
Reads the document referenced by this DocumentReference.
|
com.google.api.core.ApiFuture<DocumentSnapshot> |
Transaction.get(DocumentReference documentRef)
Reads the document referred to by the provided DocumentReference.
|
com.google.api.core.ApiFuture<List<DocumentSnapshot>> |
Firestore.getAll(DocumentReference... documentReferences)
Retrieves multiple documents from Firestore.
|
List<DocumentSnapshot> |
QuerySnapshot.getDocuments()
Returns the documents in this QuerySnapshot as a List in order of the query.
|
Iterator<DocumentSnapshot> |
QuerySnapshot.iterator() |
| Modifier and Type | Method and Description |
|---|---|
void |
Query.stream(com.google.api.gax.rpc.ApiStreamObserver<DocumentSnapshot> responseObserver)
Executes the query and streams the results as a StreamObserver of DocumentSnapshots.
|
Copyright © 2017 Google. All rights reserved.