aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Firestore/Example/SwiftBuildTest/main.swift25
-rw-r--r--Firestore/Source/Public/FIRDocumentSnapshot.h2
2 files changed, 20 insertions, 7 deletions
diff --git a/Firestore/Example/SwiftBuildTest/main.swift b/Firestore/Example/SwiftBuildTest/main.swift
index 475c1b2..c05f378 100644
--- a/Firestore/Example/SwiftBuildTest/main.swift
+++ b/Firestore/Example/SwiftBuildTest/main.swift
@@ -167,11 +167,20 @@ func readDocument(at docRef: DocumentReference) {
// Trailing closure syntax.
docRef.getDocument() { document, error in
if let document = document {
- // NOTE that document is nullable.
- let data = document.data();
+ // Note that both document and document.data() is nullable.
+ if let data = document.data() {
print("Read document: \(data)")
-
- // Fields are read via subscript notation.
+ }
+ if let data = document.data(with:SnapshotOptions.serverTimestampBehavior(.estimate)) {
+ print("Read document: \(data)")
+ }
+ if let foo = document.get("foo") {
+ print("Field: \(foo)")
+ }
+ if let foo = document.get("foo", options: SnapshotOptions.serverTimestampBehavior(.previous)) {
+ print("Field: \(foo)")
+ }
+ // Fields can also be read via subscript notation.
if let foo = document["foo"] {
print("Field: \(foo)")
}
@@ -214,7 +223,9 @@ func listenToDocument(at docRef: DocumentReference) {
}
if let document = document {
- print("Current document: \(document.data())");
+ // Note that document.data() is nullable.
+ let data : [String:Any]? = document.data()
+ print("Current document: \(data)");
if (document.metadata.isFromCache) {
print("From Cache")
} else {
@@ -241,7 +252,9 @@ func listenToDocuments(matching query: Query) {
// TODO(mikelehen): Figure out how to make "for..in" syntax work
// directly on documentSet.
for document in snap.documents {
- print("Doc: ", document.data())
+ // Note that document.data() is not nullable.
+ let data : [String:Any] = document.data()
+ print("Doc: ", data)
}
}
}
diff --git a/Firestore/Source/Public/FIRDocumentSnapshot.h b/Firestore/Source/Public/FIRDocumentSnapshot.h
index 6af9d2d..6e79a7f 100644
--- a/Firestore/Source/Public/FIRDocumentSnapshot.h
+++ b/Firestore/Source/Public/FIRDocumentSnapshot.h
@@ -45,7 +45,7 @@ typedef NS_ENUM(NSInteger, FIRServerTimestampBehavior) {
* have not yet been set to their final value.
*/
FIRServerTimestampBehaviorPrevious
-};
+} NS_SWIFT_NAME(ServerTimestampBehavior);
/**
* Options that configure how data is retrieved from a `DocumentSnapshot`