public interface

ResponseDelivery

com.android.volley.ResponseDelivery
Known Indirect Subclasses

Summary

Public Methods
abstract void postError(Request<?> request, VolleyError error)
Posts an error for the given request.
abstract void postResponse(Request<?> request, Response<?> response, Runnable runnable)
Parses a response from the network or cache and delivers it.
abstract void postResponse(Request<?> request, Response<?> response)
Parses a response from the network or cache and delivers it.

Public Methods

public abstract void postError (Request<?> request, VolleyError error)

Posts an error for the given request.

public abstract void postResponse (Request<?> request, Response<?> response, Runnable runnable)

Parses a response from the network or cache and delivers it. The provided Runnable will be executed after delivery.

public abstract void postResponse (Request<?> request, Response<?> response)

Parses a response from the network or cache and delivers it.