Reputation: 1152
I am newbie to android ,i have a dout regarding service calls in android.Which service calls are reliable either synchronous or asynchronous?and if asynchronous i am using volley in my application,is it is asynchronous?Thanks in anticipation.
Upvotes: 0
Views: 995
Reputation: 7466
Every Volley request which takes a listener for example, success and fail listeners, is asynchronous and by default I want to say that almost all are asynchronous.
For more information you can read more in Volley's documentation.
Upvotes: 1