Skip to content

Commit ab24fb2

Browse files
committed
withUnlimitedConcurrency()
1 parent 5d1dedc commit ab24fb2

File tree

1 file changed

+4
-3
lines changed
  • mug/src/main/java/com/google/mu/util/concurrent

1 file changed

+4
-3
lines changed

mug/src/main/java/com/google/mu/util/concurrent/Fanout.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@
2424
* <p>Any exception thrown by any of the concurrent operation will cancel all the other pending
2525
* operations and propagate back to the main thread.
2626
*
27-
* <p>If the main thread is interrupted (when you use {@code concurrently()} to allow interruption),
28-
* pending and currently running operations are canceled and the main thread will throw the
29-
* unchecked {@link StructuredConcurrencyInterruptedException}. For example:
27+
* <p>If the main thread is interrupted, pending and currently running operations are canceled and
28+
* the main thread will throw the unchecked {@link StructuredConcurrencyInterruptedException}.
29+
*
30+
* <p>For example:
3031
*
3132
* <pre>{@code
3233
* import static com.google.mu.util.concurrent.Fanout.concurrently;

0 commit comments

Comments
 (0)