Uses of Interface
io.vavr.CheckedRunnable
-
Packages that use CheckedRunnable Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.concurrent This package contains basic building blocks for creating fast, asynchronous, non-blocking parallel code.io.vavr.control -
-
Uses of CheckedRunnable in io.vavr
Methods in io.vavr that return CheckedRunnable Modifier and Type Method Description static CheckedRunnable
CheckedRunnable. of(CheckedRunnable methodReference)
Creates aCheckedRunnable
.Methods in io.vavr with parameters of type CheckedRunnable Modifier and Type Method Description static CheckedRunnable
CheckedRunnable. of(CheckedRunnable methodReference)
Creates aCheckedRunnable
. -
Uses of CheckedRunnable in io.vavr.concurrent
Methods in io.vavr.concurrent with parameters of type CheckedRunnable Modifier and Type Method Description static Future<java.lang.Void>
Future. run(CheckedRunnable unit)
Runs an asynchronous computation, backed by theFuture.DEFAULT_EXECUTOR
.static Future<java.lang.Void>
Future. run(java.util.concurrent.Executor executor, CheckedRunnable unit)
Starts an asynchronous computation, backed by the givenExecutor
. -
Uses of CheckedRunnable in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedRunnable Modifier and Type Method Description default Try<T>
Try. andFinallyTry(CheckedRunnable runnable)
Provides try's finally behavior no matter what the result of the operation is.default Try<T>
Try. andThenTry(CheckedRunnable runnable)
Runs the given runnable if this is aSuccess
, otherwise returns thisFailure
.static Try<java.lang.Void>
Try. run(CheckedRunnable runnable)
Creates a Try of a CheckedRunnable.
-