Class StructuredTaskScope.ShutdownOnFailure
- All Implemented Interfaces:
AutoCloseable
- Enclosing class:
StructuredTaskScope<T>
Unless otherwise specified, passing a null
argument to a method
in this class will cause a NullPointerException
to be thrown.
- Since:
- 19
-
Nested Class Summary
Nested classes/interfaces declared in class jdk.incubator.concurrent.StructuredTaskScope
StructuredTaskScope.ShutdownOnFailure, StructuredTaskScope.ShutdownOnSuccess<T>
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new unnamed ShutdownOnFailure that creates virtual threads.ShutdownOnFailure
(String name, ThreadFactory factory) Constructs a new ShutdownOnSuccess with the given name and thread factory. -
Method Summary
Modifier and TypeMethodDescriptionReturns the exception for the first task that completed with an exception.protected void
handleComplete
(Future<Object> future) Shut down the given task scope when invoked for the first time with a task that completed abnormally (exception or cancelled).join()
Wait for all threads to finish or the task scope to shut down.Wait for all threads to finish or the task scope to shut down, up to the given deadline.void
Throws if a task completed abnormally.<X extends Throwable>
voidthrowIfFailed
(Function<Throwable, ? extends X> esf) Throws the exception produced by the given exception supplying function if a task completed abnormally.Methods declared in class jdk.incubator.concurrent.StructuredTaskScope
close, fork, shutdown
-
Constructor Details
-
ShutdownOnFailure
Constructs a new ShutdownOnSuccess with the given name and thread factory. The task scope is optionally named for the purposes of monitoring and management. The thread factory is used tocreate
threads when tasks are forked. The task scope is owned by the current thread.This method captures the current thread's extent-local bindings for inheritance by threads created in the task scope. The Tree Structure section in the class description details how parent-child relations are established implicitly for the purpose of inheritance of extent-local bindings.
- Parameters:
name
- the name of the task scope, can be nullfactory
- the thread factory
-
ShutdownOnFailure
public ShutdownOnFailure()Constructs a new unnamed ShutdownOnFailure that creates virtual threads.This method is equivalent to invoking the 2-arg constructor with a name of
null
and a thread factory that creates virtual threads.
-
-
Method Details
-
handleComplete
Shut down the given task scope when invoked for the first time with a task that completed abnormally (exception or cancelled).- Overrides:
handleComplete
in classStructuredTaskScope<Object>
- Parameters:
future
- the completed task- See Also:
-
join
Wait for all threads to finish or the task scope to shut down. This method waits until all threads started in the task scope finish execution (of both task andhandleComplete
method), or theshutdown
method is invoked to shut down the task scope, or the current thread is interrupted.This method may only be invoked by the task scope owner.
- Overrides:
join
in classStructuredTaskScope<Object>
- Returns:
- this task scope
- Throws:
IllegalStateException
- if this task scope is closedWrongThreadException
- if the current thread is not the ownerInterruptedException
- if interrupted while waiting
-
joinUntil
public StructuredTaskScope.ShutdownOnFailure joinUntil(Instant deadline) throws InterruptedException, TimeoutException Wait for all threads to finish or the task scope to shut down, up to the given deadline. This method waits until all threads started in the task scope finish execution (of both task andhandleComplete
method), theshutdown
method is invoked to shut down the task scope, the current thread is interrupted, or the deadline is reached.This method may only be invoked by the task scope owner.
- Overrides:
joinUntil
in classStructuredTaskScope<Object>
- Parameters:
deadline
- the deadline- Returns:
- this task scope
- Throws:
IllegalStateException
- if this task scope is closedWrongThreadException
- if the current thread is not the ownerInterruptedException
- if interrupted while waitingTimeoutException
- if the deadline is reached while waiting
-
exception
Returns the exception for the first task that completed with an exception. If no task completed with an exception but cancelled tasks were notified to thehandleComplete
method then aCancellationException
is returned. If no tasks completed abnormally then an emptyOptional
is returned.This method is intended to be invoked by the task scope owner after it has invoked
join
(orjoinUntil
). The behavior of this method is unspecified when invoking thie method before the join is done.- Returns:
- the exception for a task that completed abnormally or an empty optional if no tasks completed abnormally
-
throwIfFailed
Throws if a task completed abnormally. If any task completed with an exception thenExecutionException
is thrown with the exception of the first task to fail as the cause. If no task completed with an exception but cancelled tasks were notified to thehandleComplete
method thenCancellationException
is thrown. This method does nothing if no tasks completed abnormally.This method is intended to be invoked by the task scope owner after it has invoked
join
(orjoinUntil
). The behavior of this method is unspecified when invoking thie method before the join is done.- Throws:
ExecutionException
- if a task completed with an exceptionCancellationException
- if no tasks completed with an exception but tasks were cancelled
-
throwIfFailed
Throws the exception produced by the given exception supplying function if a task completed abnormally. If any task completed with an exception then the function is invoked with the exception of the first task to fail. If no task completed with an exception but cancelled tasks were notified to thehandleComplete
method then the function is called with aCancellationException
. The exception returned by the function is thrown. This method does nothing if no tasks completed abnormally.This method is intended to be invoked by the task scope owner after it has invoked
join
(orjoinUntil
). The behavior of this method is unspecified when invoking thie method before the join is done.- Type Parameters:
X
- type of the exception to be thrown- Parameters:
esf
- the exception supplying function- Throws:
X
- produced by the exception supplying function
-