How does Android Volley handle temporarily loss of network connection?

后端 未结 5 1807
野趣味
野趣味 2021-02-08 14:27

If an Android Volley post request fails due to network loss, will Android Volley retry the post after the network connection is restored automatically? Will it fire all of the r

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-08 15:10

    If an Android Volley post request fails due to network loss, will Android Volley retry the post after the network connection is restored automatically?

    No, it won't. I might not even be desired depending on your application.

    Will it fire all of the request attempts, wait for connection to reestablish or simply trigger an error and stop?

    It simply throws an error. And yes, you should write this kind of logic yourself.

提交回复
热议问题