什么是Firestore的get,set方法的超时以及如何在Android中增加get和set方法的超时

时间:2020-05-22 07:03:23

标签: android google-cloud-firestore

firestore的get和set方法的超时是多少?如何在Android中增加这些方法的超时?

db.document(documents path).get()   // what is the timeout for get() method
db.document(documents path).set(data, SetOptions.merge());  // what is the timeout for set() method

如何在网络连接速度慢的情况下增加此超时时间?

1 个答案:

答案 0 :(得分:1)

get()set()没有超时。 SDK会一直尝试直到获得响应为止,或者出现错误消息说查询将永远不会成功(例如,当安全规则拒绝请求时)。