Interface ScopedValue.CallableOp<T, X extendsThrowable>

Type Parameters:
T - result type of the operation
X - type of the exception thrown by the operation
Enclosing class:
ScopedValuePREVIEW<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterfacepublic static interfaceScopedValue.CallableOp<T, X extendsThrowable>
CallableOp is a preview API of the Java platform.
Programs can only useCallableOp when preview features are enabled.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
An operation that returns a result and may throw an exception.
Since:
23
  • Method Summary

    Modifier and Type
    Method
    Description
    Executes this operation.
  • Method Details

    • call

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