Uses of Interface
io.vavr.CheckedRunnable
-
Packages that use CheckedRunnable Package Description io.vavr BesideAPIthe 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 CheckedRunnableCheckedRunnable. of(@NonNull CheckedRunnable methodReference)Creates aCheckedRunnablefrom the given method reference or lambda.Methods in io.vavr with parameters of type CheckedRunnable Modifier and Type Method Description static CheckedRunnableCheckedRunnable. of(@NonNull CheckedRunnable methodReference)Creates aCheckedRunnablefrom the given method reference or lambda. -
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(@NonNull CheckedRunnable unit)Runs an asynchronous computation using theFuture.DEFAULT_EXECUTOR.static Future<java.lang.Void>Future. run(@NonNull java.util.concurrent.Executor executor, @NonNull CheckedRunnable unit)Starts an asynchronous computation using the specifiedExecutor. -
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(@NonNull CheckedRunnable runnable)Executes a givenCheckedRunnableafter thisTry, regardless of whether it is aTry.SuccessorTry.Failure.default Try<T>Try. andThenTry(@NonNull CheckedRunnable runnable)static Try<java.lang.Void>Try. run(@NonNull CheckedRunnable runnable)Creates aTryinstance from aCheckedRunnable.
-