Package com.dropbox.core.http
Class StandardHttpRequestor.Config.Builder
- java.lang.Object
-
- com.dropbox.core.http.StandardHttpRequestor.Config.Builder
-
- Enclosing class:
- StandardHttpRequestor.Config
public static final class StandardHttpRequestor.Config.Builder extends java.lang.Object
Builder forStandardHttpRequestor.Config
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StandardHttpRequestor.Config
build()
Returns aStandardHttpRequestor.Config
with the values set by this builder.StandardHttpRequestor.Config.Builder
withConnectTimeout(long timeout, java.util.concurrent.TimeUnit unit)
Set timeout for opening a connection to the servers.StandardHttpRequestor.Config.Builder
withNoConnectTimeout()
Disables timeouts for opening a connection to the servers.StandardHttpRequestor.Config.Builder
withNoReadTimeout()
Disables timeout for receiving a response from the servers.StandardHttpRequestor.Config.Builder
withProxy(java.net.Proxy proxy)
Set proxy configuration for network connections.StandardHttpRequestor.Config.Builder
withReadTimeout(long timeout, java.util.concurrent.TimeUnit unit)
Sets timeout for receiving a response from the servers.
-
-
-
Method Detail
-
withProxy
public StandardHttpRequestor.Config.Builder withProxy(java.net.Proxy proxy)
Set proxy configuration for network connections.- Parameters:
proxy
- Proxy configuration- Returns:
- this builder
- Throws:
java.lang.NullPointerException
- ifproxy
isnull
-
withNoConnectTimeout
public StandardHttpRequestor.Config.Builder withNoConnectTimeout()
Disables timeouts for opening a connection to the servers.- Returns:
- this builder
-
withConnectTimeout
public StandardHttpRequestor.Config.Builder withConnectTimeout(long timeout, java.util.concurrent.TimeUnit unit)
Set timeout for opening a connection to the servers. A timeout of 0 will disable any connnect timeouts.- Parameters:
timeout
- time to wait for a network connection to openunit
- unit of time- Returns:
- this builder
- Throws:
java.lang.IllegalArgumentException
- iftimeout
is negativejava.lang.NullPointerException
- ifunit
isnull
-
withNoReadTimeout
public StandardHttpRequestor.Config.Builder withNoReadTimeout()
Disables timeout for receiving a response from the servers.- Returns:
- this builder
-
withReadTimeout
public StandardHttpRequestor.Config.Builder withReadTimeout(long timeout, java.util.concurrent.TimeUnit unit)
Sets timeout for receiving a response from the servers. This timeout is not for receiving the entire server response. A server that responds with bytes slowly will not trigger the timeout, unless the specified amount of time has passed between received bytes. A timeout of 0 will disable any read timeouts.- Parameters:
timeout
- time to wait for a response from the serverunit
- unit of time- Returns:
- this builder
- Throws:
java.lang.IllegalArgumentException
- iftimeout
is negativejava.lang.NullPointerException
- ifunit
isnull
-
build
public StandardHttpRequestor.Config build()
Returns aStandardHttpRequestor.Config
with the values set by this builder.- Returns:
StandardHttpRequestor.Config
with this builder's values
-
-