public class Executor extends Object
A PoolingHttpClientConnectionManager
with maximum 100 connections per route and
a total maximum of 200 connections is used internally.
Modifier and Type | Method and Description |
---|---|
Executor |
auth(AuthScope authScope,
Credentials creds) |
Executor |
auth(Credentials cred) |
Executor |
auth(org.apache.http.HttpHost host,
Credentials creds) |
Executor |
auth(org.apache.http.HttpHost host,
String username,
String password) |
Executor |
auth(org.apache.http.HttpHost host,
String username,
String password,
String workstation,
String domain) |
Executor |
auth(String host,
Credentials creds) |
Executor |
auth(String username,
String password) |
Executor |
auth(String username,
String password,
String workstation,
String domain) |
Executor |
authPreemptive(org.apache.http.HttpHost host) |
Executor |
authPreemptive(String host) |
Executor |
authPreemptiveProxy(org.apache.http.HttpHost proxy) |
Executor |
authPreemptiveProxy(String proxy) |
Executor |
clearAuth() |
Executor |
clearCookies() |
static void |
closeIdleConnections()
Closes all idle persistent connections used by the internal pool.
|
Executor |
cookieStore(CookieStore cookieStore)
Deprecated.
(4.5) Use
use(CookieStore) . |
Response |
execute(Request request)
Executes the request.
|
static Executor |
newInstance() |
static Executor |
newInstance(HttpClient httpclient) |
static void |
registerScheme(Scheme scheme)
Deprecated.
(4.3) do not use.
|
static void |
unregisterScheme(String name)
Deprecated.
(4.3) do not use.
|
Executor |
use(CookieStore cookieStore) |
Executor |
use(CredentialsProvider credentialsProvider) |
public static Executor newInstance()
public static Executor newInstance(HttpClient httpclient)
public Executor use(CredentialsProvider credentialsProvider)
public Executor auth(AuthScope authScope, Credentials creds)
public Executor auth(org.apache.http.HttpHost host, Credentials creds)
public Executor auth(String host, Credentials creds)
public Executor authPreemptive(org.apache.http.HttpHost host)
public Executor authPreemptiveProxy(org.apache.http.HttpHost proxy)
public Executor auth(Credentials cred)
public Executor auth(org.apache.http.HttpHost host, String username, String password, String workstation, String domain)
public Executor clearAuth()
@Deprecated public Executor cookieStore(CookieStore cookieStore)
use(CookieStore)
.public Executor use(CookieStore cookieStore)
public Executor clearCookies()
public Response execute(Request request) throws ClientProtocolException, IOException
Response.discardContent()
, otherwise the
connection used for the request might not be released to the pool.@Deprecated public static void registerScheme(Scheme scheme)
@Deprecated public static void unregisterScheme(String name)
public static void closeIdleConnections()
Copyright © 2011–2022 The Apache Software Foundation. All rights reserved.