<div dir="ltr">As we are using structured concurrency in production, we would like to give some feedback.<div>We created an adapter for java.util.concurrent.StructuredTaskScope.ShutdownOnFailure for the following reasons:</div><div><ol><li>To translate checked exceptions to a RuntimeException. The current implementation throws an InterruptedException when calling the join method which is a checked exception. This forces the code that uses ShutdownOnFailure to handle the exception explicitly or mark their method to throw this checked exception.</li><li>When calling join, our adapter changes the behaviour from the join method to throw exceptions by default by calling throwIfFailed under the hood. Our adapter provides an explicit method if a developer doesn't want to have an exception thrown.</li></ol></div></div>