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 CheckedRunnable
CheckedRunnable.of
(CheckedRunnable methodReference) Creates aCheckedRunnable
.Methods in io.vavr with parameters of type CheckedRunnableModifier and TypeMethodDescriptionstatic CheckedRunnable
CheckedRunnable.of
(CheckedRunnable methodReference) Creates aCheckedRunnable
. -
Uses of CheckedRunnable in io.vavr.concurrent
Methods in io.vavr.concurrent with parameters of type CheckedRunnableModifier and TypeMethodDescriptionFuture.run
(CheckedRunnable unit) Runs an asynchronous computation, backed by theFuture.DEFAULT_EXECUTOR
.Future.run
(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 CheckedRunnableModifier and TypeMethodDescriptionTry.andFinallyTry
(CheckedRunnable runnable) Provides try's finally behavior no matter what the result of the operation is.Try.andThenTry
(CheckedRunnable runnable) Runs the given runnable if this is aSuccess
, otherwise returns thisFailure
.Try.run
(CheckedRunnable runnable) Creates a Try of a CheckedRunnable.