Skip to content

Commit 8b969dd

Browse files
committed
Specify time unit as variable suffix
1 parent 9b86fc5 commit 8b969dd

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

src/main/java/org/libj/net/DelegateURLConnection.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public void connect() throws IOException {
6060
}
6161

6262
@Override
63-
public void setConnectTimeout(final int timeout) {
64-
target.setConnectTimeout(timeout);
63+
public void setConnectTimeout(final int timeoutMs) {
64+
target.setConnectTimeout(timeoutMs);
6565
}
6666

6767
@Override
@@ -70,8 +70,8 @@ public int getConnectTimeout() {
7070
}
7171

7272
@Override
73-
public void setReadTimeout(final int timeout) {
74-
target.setReadTimeout(timeout);
73+
public void setReadTimeout(final int timeoutMs) {
74+
target.setReadTimeout(timeoutMs);
7575
}
7676

7777
@Override

src/main/java/org/libj/net/Downloads.java

+20-20
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ public static HttpURLConnection downloadFile(final String fromUrl, final File to
6060
*
6161
* @param fromUrl The URL from which to download.
6262
* @param toFile The destination {@link File}.
63-
* @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
63+
* @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
6464
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
6565
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
6666
* timeout.
67-
* @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
68-
* referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
67+
* @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
68+
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
6969
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
7070
* timeout.
7171
* @param options Options specifying how the download should be done.
7272
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
7373
* @throws IOException If an I/O error has occurred.
7474
* @throws NullPointerException If the provided {@code fromUrl}, {@code toFile}, or {@code options} is null.
7575
*/
76-
public static HttpURLConnection downloadFile(final String fromUrl, final File toFile, final int connectTimeout, final int readTimeout, final CopyOption ... options) throws IOException {
77-
return downloadFile(new URL(fromUrl), toFile, connectTimeout, readTimeout, options);
76+
public static HttpURLConnection downloadFile(final String fromUrl, final File toFile, final int connectTimeoutMs, final int readTimeoutMs, final CopyOption ... options) throws IOException {
77+
return downloadFile(new URL(fromUrl), toFile, connectTimeoutMs, readTimeoutMs, options);
7878
}
7979

8080
/**
@@ -100,22 +100,22 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
100100
*
101101
* @param fromUrl The {@link URL} from which to download.
102102
* @param toFile The destination {@link File}.
103-
* @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
103+
* @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
104104
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
105105
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
106106
* timeout.
107-
* @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
108-
* referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
107+
* @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
108+
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
109109
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
110110
* timeout.
111111
* @param options Options specifying how the download should be done.
112112
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
113113
* @throws IOException If an I/O error has occurred.
114114
* @throws NullPointerException If {@code fromUrl}, {@code toFile}, or {@code options} is null.
115-
* @throws IllegalArgumentException If the {@code connectTimeout} or {@code readTimeout} parameter is negative.
115+
* @throws IllegalArgumentException If the {@code connectTimeoutMs} or {@code readTimeoutMs} parameter is negative.
116116
*/
117-
public static HttpURLConnection downloadFile(final URL fromUrl, final File toFile, final int connectTimeout, final int readTimeout, CopyOption ... options) throws IOException {
118-
return downloadFile(fromUrl, toFile, connectTimeout, readTimeout, true, options);
117+
public static HttpURLConnection downloadFile(final URL fromUrl, final File toFile, final int connectTimeoutMs, final int readTimeoutMs, CopyOption ... options) throws IOException {
118+
return downloadFile(fromUrl, toFile, connectTimeoutMs, readTimeoutMs, true, options);
119119
}
120120

121121
/**
@@ -125,23 +125,23 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
125125
*
126126
* @param fromUrl The {@link URL} from which to download.
127127
* @param toFile The destination {@link File}.
128-
* @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
128+
* @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
129129
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
130130
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
131131
* timeout.
132-
* @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
133-
* referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
132+
* @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
133+
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
134134
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
135135
* timeout.
136136
* @param followRedirects Whether HTTP 301, HTTP 302, or HTTP 303 redirects should be followed.
137137
* @param options Options specifying how the download should be done.
138138
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
139139
* @throws IOException If an I/O error has occurred.
140140
* @throws NullPointerException If {@code fromUrl}, {@code toFile}, or {@code options} is null.
141-
* @throws IllegalArgumentException If the {@code connectTimeout} or {@code readTimeout} parameter is negative.
141+
* @throws IllegalArgumentException If the {@code connectTimeoutMs} or {@code readTimeoutMs} parameter is negative.
142142
*/
143-
public static HttpURLConnection downloadFile(final URL fromUrl, final File toFile, final int connectTimeout, final int readTimeout, final boolean followRedirects, CopyOption ... options) throws IOException {
144-
final HttpURLConnection connection = (HttpURLConnection)(followRedirects ? URLConnections.checkFollowRedirect(fromUrl.openConnection(), (final HttpURLConnection c) -> beforeDownloadFile(c, connectTimeout, readTimeout, toFile)) : fromUrl.openConnection());
143+
public static HttpURLConnection downloadFile(final URL fromUrl, final File toFile, final int connectTimeoutMs, final int readTimeoutMs, final boolean followRedirects, CopyOption ... options) throws IOException {
144+
final HttpURLConnection connection = (HttpURLConnection)(followRedirects ? URLConnections.checkFollowRedirect(fromUrl.openConnection(), (final HttpURLConnection c) -> beforeDownloadFile(c, connectTimeoutMs, readTimeoutMs, toFile)) : fromUrl.openConnection());
145145
try {
146146
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
147147
try (final InputStream in = connection.getInputStream()) {
@@ -162,9 +162,9 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
162162
}
163163
}
164164

165-
private static void beforeDownloadFile(final HttpURLConnection connection, final int connectTimeout, final int readTimeout, final File toFile) {
166-
connection.setConnectTimeout(connectTimeout);
167-
connection.setReadTimeout(readTimeout);
165+
private static void beforeDownloadFile(final HttpURLConnection connection, final int connectTimeoutMs, final int readTimeoutMs, final File toFile) {
166+
connection.setConnectTimeout(connectTimeoutMs);
167+
connection.setReadTimeout(readTimeoutMs);
168168
if (toFile.exists())
169169
connection.setIfModifiedSince(toFile.lastModified());
170170
}

src/main/java/org/libj/net/URLs.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -392,12 +392,12 @@ public static URL canonicalize(final URL url) {
392392
* </ol>
393393
*
394394
* @param url The {@link URL} to test.
395-
* @param timeout The timeout to be used when attempting to open a connection to the {@code url}.
395+
* @param timeoutMs The timeout to be used when attempting to open a connection to the {@code url}.
396396
* @return {@code true} if the specified {@link URL} references a resource that exists; otherwise {@code false}.
397397
* @throws NullPointerException If {@code url} is null.
398398
* @throws IllegalArgumentException If {@code timeout} is negative.
399399
*/
400-
public static boolean exists(final URL url, final int timeout) {
400+
public static boolean exists(final URL url, final int timeoutMs) {
401401
try {
402402
if ("file".equals(url.getProtocol()))
403403
return new File(url.toURI()).exists();
@@ -407,7 +407,7 @@ public static boolean exists(final URL url, final int timeout) {
407407

408408
try {
409409
final URLConnection connection = url.openConnection();
410-
connection.setConnectTimeout(timeout);
410+
connection.setConnectTimeout(timeoutMs);
411411
URLConnections.checkFollowRedirect(connection).getInputStream().close();
412412
return true;
413413
}

0 commit comments

Comments
 (0)