From ee3b93de037b17f63bf5088cb1a193a71682c44e Mon Sep 17 00:00:00 2001 From: WalkerWatch Date: Tue, 7 Nov 2017 15:17:42 -0500 Subject: [PATCH] Updated javadoc language. Resolves #1945 --- .../java/org/eclipse/jetty/server/HttpConfiguration.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConfiguration.java b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConfiguration.java index 009415225e2..e39da219bd6 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConfiguration.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/HttpConfiguration.java @@ -232,7 +232,8 @@ public class HttpConfiguration /** *

This timeout is in addition to the {@link Connector#getIdleTimeout()}, and applies * to the total operation (as opposed to the idle timeout that applies to the time no - * data is being sent).

+ * data is being sent). This applies only to blocking operations and does not affect + * asynchronous read and write.

* * @return -1, for no blocking timeout (default), 0 for a blocking timeout equal to the * idle timeout; >0 for a timeout in ms applied to the total blocking operation. @@ -246,7 +247,8 @@ public class HttpConfiguration /** *

This timeout is in addition to the {@link Connector#getIdleTimeout()}, and applies * to the total operation (as opposed to the idle timeout that applies to the time no - * data is being sent).

+ * data is being sent).This applies only to blocking operations and does not affect + * asynchronous read and write.

* * @param blockingTimeout -1, for no blocking timeout (default), 0 for a blocking timeout equal to the * idle timeout; >0 for a timeout in ms applied to the total blocking operation.