Interface InterceptableResponse

Represents an intercepted HTTP response which can be modified.

interface InterceptableResponse {
    body: ResponseBody;
    closed: boolean;
    headers: HTTPHeaders;
    request: Request;
    status: number;
    statusText: string;
    url: string;
    respondWith(response): void;
    waitUntil(fn): void;
    waitUntil(promise): void;
}

Properties

The response's body.

closed: boolean

Whether the response is closed.

Remarks


- Response is closed by InterceptableResponse.respondWith.

headers: HTTPHeaders

The response's HTTP headers.

request: Request

The response's request.

status: number

The response's status code.

statusText: string

The response's status text.

url: string

The response's url.

Remarks


- This can differ from the request.url when redirected.

Methods

  • Replaces the original response with the provided response.

    Parameters

    Returns void

    Remarks


    - Invocation closes the response.
    - Invocation while the response is closed will throw an error.

  • Wait until the given callback is done before closing this response.

    Returns void

    Remarks


    - The first argument of the callback is a done function, which must be called to resolve the callback.
    - Invocation of the done function closes the response.
    - Invocation while the response is closed will throw an error.

  • Wait until the given promise is resolved before closing this response.

    Parameters

    Returns void

    Remarks


    - Resolution of the promise closes the response.
    - Invocation while the response is closed will throw an error.
    - This is equivalent to:

    response.waitUntil(function (done) {
    promise.then(function () {
    done();
    }).catch(function (error) {
    done(error);
    });
    })