Hari krishna
Hari krishna

Reputation: 1152

Is volley service calls are asynchronous?

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

Answers (1)

galvan
galvan

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

Related Questions