Example usage for org.apache.http.client.methods AbortableHttpRequest abort

List of usage examples for org.apache.http.client.methods AbortableHttpRequest abort

Introduction

In this page you can find the example usage for org.apache.http.client.methods AbortableHttpRequest abort.

Prototype

void abort();

Source Link

Document

Aborts this http request.

Usage

From source file:org.rhq.maven.plugins.UploadMojo.java

private void abortQuietly(AbortableHttpRequest httpRequest) {
    if (httpRequest != null) {
        httpRequest.abort();
    }
}