Uses of Interface
io.vavr.CheckedRunnable
Packages that use CheckedRunnable
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.This package contains basic building blocks for creating fast, asynchronous, non-blocking parallel code.
-
Uses of CheckedRunnable in io.vavr
Methods in io.vavr that return CheckedRunnableModifier and TypeMethodDescriptionstatic CheckedRunnableCheckedRunnable.of(@NonNull CheckedRunnable methodReference) Creates aCheckedRunnablefrom the given method reference or lambda.Methods in io.vavr with parameters of type CheckedRunnableModifier and TypeMethodDescriptionstatic 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 CheckedRunnableModifier and TypeMethodDescriptionFuture.run(@NonNull CheckedRunnable unit) Runs an asynchronous computation using theFuture.DEFAULT_EXECUTOR.Future.run(@NonNull 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 CheckedRunnableModifier and TypeMethodDescriptionTry.andFinallyTry(@NonNull CheckedRunnable runnable) Executes a givenCheckedRunnableafter thisTry, regardless of whether it is aTry.SuccessorTry.Failure.Try.andThenTry(@NonNull CheckedRunnable runnable) Try.run(@NonNull CheckedRunnable runnable) Creates aTryinstance from aCheckedRunnable.