W3cubDocs

/OpenJDK 25

Interface ScopedValue.CallableOp<T, X extends Throwable>

Type Parameters:
T - result type of the operation
X - type of the exception thrown by the operation
Enclosing class:
ScopedValue<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ScopedValue.CallableOp<T, X extends Throwable>
An operation that returns a result and may throw an exception.
Since:
25

Method Summary

Modifier and Type Method Description
T call()
Executes this operation.

Method Details

call

T call() throws X
Executes this operation.
Returns:
the result, can be null
Throws:
X - if the operation completes with an exception

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/ScopedValue.CallableOp.html