@@ -1296,8 +1296,8 @@ public final Cffu<Void> runAfterEitherAsync(CompletionStage<?> other, Runnable a
12961296 * Otherwise, the returned Cffu contains the same result as this Cffu.
12971297 * <p>
12981298 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1299- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1300- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1299+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1300+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
13011301 *
13021302 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
13031303 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -1317,8 +1317,8 @@ public final <X extends Throwable> F catching(Class<X> exceptionType, Function<?
13171317 * Otherwise, the returned Cffu contains the same result as this Cffu.
13181318 * <p>
13191319 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1320- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1321- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1320+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1321+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
13221322 *
13231323 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
13241324 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -1339,8 +1339,8 @@ public final <X extends Throwable> F catchingAsync(
13391339 * Otherwise, the returned Cffu contains the same result as this Cffu.
13401340 * <p>
13411341 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1342- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1343- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1342+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1343+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
13441344 *
13451345 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
13461346 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -1458,8 +1458,8 @@ public final F orTimeout(long timeout, TimeUnit unit) {
14581458 * instead of this method. Using this method is appropriate only when:
14591459 * <ul>
14601460 * <li>the returned Cffu is only read explicitly(e.g. by get/join/resultNow methods),
1461- * <li>and/or all subsequent actions of dependent Cffus/CompletableFutures are guaranteed to execute asynchronously
1462- * ( i.e., the dependent Cffus/CompletableFutures are created using async methods) .
1461+ * <li>and/or all subsequent actions of dependent Cffus/CompletableFutures are guaranteed to execute asynchronously,
1462+ * i.e. the dependent Cffus/CompletableFutures are created using async methods.
14631463 * </ul> In these cases, using this unsafe method avoids an unnecessary thread switching when timeout occurs; However,
14641464 * these conditions are difficult to guarantee in practice, especially when the returned Cffu is used by others' codes.
14651465 * <p>
@@ -1519,8 +1519,8 @@ public final F completeOnTimeout(@Nullable T value, long timeout, TimeUnit unit)
15191519 * completeOnTimeout} instead of this method. Using this method is appropriate only when:
15201520 * <ul>
15211521 * <li>the returned Cffu is only read explicitly(e.g. by get/join/resultNow methods),
1522- * <li>and/or all subsequent actions of dependent Cffus/CompletableFutures are guaranteed to execute asynchronously
1523- * ( i.e., the dependent Cffus/CompletableFutures are created using async methods) .
1522+ * <li>and/or all subsequent actions of dependent Cffus/CompletableFutures are guaranteed to execute asynchronously,
1523+ * i.e. the dependent Cffus/CompletableFutures are created using async methods.
15241524 * </ul> In these cases, using this unsafe method avoids an unnecessary thread switching when timeout occurs; However,
15251525 * these conditions are difficult to guarantee in practice, especially when the returned Cffu is used by others' codes.
15261526 *
@@ -1616,8 +1616,8 @@ public final <U> Cffu<U> thenComposeAsync(Function<? super T, ? extends Completi
16161616 * is composed using the results of the supplied function applied to the exception from this Cffu.
16171617 * <p>
16181618 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1619- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1620- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1619+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1620+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
16211621 *
16221622 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
16231623 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -1637,8 +1637,8 @@ public final <X extends Throwable> F catchingCompose(
16371637 * the results of the supplied function applied to the exception from this Cffu using {@link #defaultExecutor()}.
16381638 * <p>
16391639 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1640- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1641- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1640+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1641+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
16421642 *
16431643 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
16441644 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -1658,8 +1658,8 @@ public final <X extends Throwable> F catchingComposeAsync(
16581658 * the results of the supplied function applied to the exception from this Cffu, using the supplied Executor.
16591659 * <p>
16601660 * <strong>"The exception from this Cffu"</strong> means the cause of the {@link ExecutionException}
1661- * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself;
1662- * aka the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
1661+ * thrown by {@code get()} or, if {@code get()} throws a different kind of exception, that exception itself,
1662+ * i.e. the exception is unwrapped by {@link CompletableFutureUtils#unwrapCfException(Throwable)}.
16631663 *
16641664 * @param exceptionType the exception type that triggers use of {@code fallback}. The exception type is matched
16651665 * against the exception from this Cffu. To avoid hiding bugs and other unrecoverable errors,
@@ -2471,7 +2471,7 @@ public final boolean isMinimalStage() {
24712471
24722472 /**
24732473 * Returns the estimated number of CompletableFuture(including Cffu wrapper)
2474- * whose completions are awaiting completion of this Cffu(aka its underlying CompletableFuture) .
2474+ * whose completions are awaiting completion of this Cffu, i.e. its underlying CompletableFuture.
24752475 * This method is designed for use in monitoring system state, not for synchronization control.
24762476 *
24772477 * @return the estimated number of dependent CompletableFutures(including Cffu wrapper)
@@ -2580,7 +2580,7 @@ public final String toString() {
25802580 /**
25812581 * Returns a {@link CffuFactory.IterableOps} instance to access the {@link Iterable}-based variants
25822582 * (including {@link Collection}, {@link List}, etc.) of same-named varargs methods from {@link Cffu}.
2583- * These methods handle multiple actions and Futures with the same type (aka. homogeneous) .
2583+ * These methods handle multiple actions and Futures with the same type, i.e. homogeneous.
25842584 *
25852585 * @see CfIterableUtils
25862586 */
@@ -2602,7 +2602,7 @@ public final TupleOps tupleOps() {
26022602 /**
26032603 * The {@link Iterable}-based variants (including {@link Collection}, {@link List}, etc.) of
26042604 * same-named varargs methods from {@link Cffu}.
2605- * These methods handle multiple actions and Futures with the same type (aka. homogeneous) .
2605+ * These methods handle multiple actions and Futures with the same type, i.e. homogeneous.
26062606 */
26072607 public final class IterableOps {
26082608 ////////////////////////////////////////////////////////////
0 commit comments