com.android.volley
インタフェース ResponseDelivery

既知の実装クラスの一覧:
ExecutorDelivery

public interface ResponseDelivery


メソッドの概要
 void postError(Request<?> request, VolleyError error)
          Posts an error for the given request.
 void postResponse(Request<?> request, Response<?> response)
          Parses a response from the network or cache and delivers it.
 void postResponse(Request<?> request, Response<?> response, java.lang.Runnable runnable)
          Parses a response from the network or cache and delivers it.
 

メソッドの詳細

postResponse

void postResponse(Request<?> request,
                  Response<?> response)
Parses a response from the network or cache and delivers it.


postResponse

void postResponse(Request<?> request,
                  Response<?> response,
                  java.lang.Runnable runnable)
Parses a response from the network or cache and delivers it. The provided Runnable will be executed after delivery.


postError

void postError(Request<?> request,
               VolleyError error)
Posts an error for the given request.