root/net/cronet/android/java/src/org/chromium/net/HttpUrlRequestListener.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. onRequestComplete

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.net;

/**
 * Callback interface.
 */
public interface HttpUrlRequestListener {
    /**
     * The listener should completely process the response in the callback
     * method. Immediately after the callback, the request object will be
     * recycled.
     */
    void onRequestComplete(HttpUrlRequest request);
}

/* [<][>][^][v][top][bottom][index][help] */