You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/src/main/java/org/asynchttpclient/future/ExecutionList.java
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
*
30
30
* <p>
31
31
* Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown during {@code Executor.execute} (e.g., a {@code RejectedExecutionException} or an
32
-
* exception thrown by {@linkplain MoreExecutors#directExecutor direct execution}) will be caught and logged.
32
+
* exception thrown by a directExecutor direct execution) will be caught and logged.
33
33
*
34
34
* @author Nishant Thakkar
35
35
* @author Sven Mawson
@@ -49,13 +49,9 @@ public final class ExecutionList {
49
49
publicExecutionList() {
50
50
}
51
51
52
-
/**
53
-
* Adds the {@code Runnable} and accompanying {@code Executor} to the list of listeners to execute. If execution has already begun, the listener is executed immediately.
54
-
*
55
-
* <p>
56
-
* When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See the discussion in the {@link ListenableFuture#addListener
57
-
* ListenableFuture.addListener} documentation.
58
-
*/
52
+
// Adds the {@code Runnable} and accompanying {@code Executor} to the list of listeners to execute. If execution has already begun, the listener is executed immediately.
53
+
// When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See the discussion in the {@link org.asynchttpclient.ListenableFuture#addListener
0 commit comments