像在Firebase中一样,在Firestore中是否有onChildAdded方法?

时间:2019-06-17 15:35:01

标签: java firebase google-cloud-firestore

firestore是否像(add document listener)一样支持firebase real time

firebase实时具有这样的方法

public void onChildAdded(DataSnapshot dataSnapshot, String s) {

}

但是我不确定firestore中是否有这种方法,我希望它在集合中添加新文档时通知我,我正在使用Java。

1 个答案:

答案 0 :(得分:1)

您可以在onSnapshot上获取新文档和更改文档的回调,如documentation中所述。