Package | com.distriqt.extension.firebase.firestore |
Class | public class DocumentChange |
Inheritance | DocumentChange ![]() |
Property | Defined By | ||
---|---|---|---|
changeType : int | DocumentChange | ||
newIndex : int | DocumentChange | ||
oldIndex : int | DocumentChange |
Method | Defined By | ||
---|---|---|---|
DocumentChange | |||
fromObject(data:Object, store:_ReferenceStore):DocumentChange [static] | DocumentChange | ||
DocumentChange |
Constant | Defined By | ||
---|---|---|---|
ADDED : int = 0 [static]
Indicates a new document was added to the set of documents matching the query
| DocumentChange | ||
MODIFIED : int = 1 [static]
Indicates a document within the query was modified
| DocumentChange | ||
REMOVED : int = 2 [static]
Indicates a document within the query was removed (either deleted or no longer matches the query
| DocumentChange |
changeType | property |
public var changeType:int
newIndex | property |
public var newIndex:int
oldIndex | property |
public var oldIndex:int
DocumentChange | () | Constructor |
public function DocumentChange()
fromObject | () | method |
public static function fromObject(data:Object, store:_ReferenceStore):DocumentChange
Parameters
data:Object | |
store:_ReferenceStore |
DocumentChange |
getDocument | () | method |
ADDED | Constant |
public static const ADDED:int = 0
Indicates a new document was added to the set of documents matching the query
MODIFIED | Constant |
public static const MODIFIED:int = 1
Indicates a document within the query was modified
REMOVED | Constant |
public static const REMOVED:int = 2
Indicates a document within the query was removed (either deleted or no longer matches the query