Interface Response.CompleteListener

    • Method Detail

      • onComplete

        void onComplete​(Result result)
        Deprecated.
        Callback method invoked when the request and the response have been processed, either successfully or not.

        The result parameter contains the request, the response, and eventual failures.

        Requests may complete after response, for example in case of big uploads that are discarded or read asynchronously by the server. This method is always invoked after Response.SuccessListener.onSuccess(Response) or Response.FailureListener.onFailure(Response, Throwable), and only when request indicates that it is completed.

        Parameters:
        result - the result of the request / response exchange