Also: HttpClient
public interface

AbortableHttpRequest

org.apache.http.client.methods.AbortableHttpRequest
Known Indirect Subclasses

Class Overview

Interface representing an HTTP request that can be aborted by shutting down the underlying HTTP connection.

Summary

Public Methods
abstract void abort()
Aborts this http request.
abstract void setConnectionRequest(ClientConnectionRequest connRequest)
Sets the ClientConnectionRequest callback that can be used to abort a long-lived request for a connection.
abstract void setReleaseTrigger(ConnectionReleaseTrigger releaseTrigger)
Sets the ConnectionReleaseTrigger callback that can be used to abort an active connection.

Public Methods

public abstract void abort ()

Also: HttpClient

Aborts this http request. Any active execution of this method should return immediately. If the request has not started, it will abort after the next execution. Aborting this request will cause all subsequent executions with this request to fail.

public abstract void setConnectionRequest (ClientConnectionRequest connRequest)

Also: HttpClient

Sets the ClientConnectionRequest callback that can be used to abort a long-lived request for a connection. If the request is already aborted, throws an IOException.

Throws
IOException

public abstract void setReleaseTrigger (ConnectionReleaseTrigger releaseTrigger)

Also: HttpClient

Sets the ConnectionReleaseTrigger callback that can be used to abort an active connection. Typically, this will be the ManagedClientConnection itself. If the request is already aborted, throws an IOException.

Throws
IOException