Uses of Interface
org.apache.commons.lang3.concurrent.Computable
Package
Description
Provides support classes for multi-threaded programming.
-
Uses of Computable in org.apache.commons.lang3.concurrent
Modifier and TypeClassDescriptionclass
Memoizer<I,
O> Definition of an interface for a wrapper around a calculation that takes a single parameter and returns a result.ModifierConstructorDescriptionMemoizer
(Computable<I, O> computable) Constructs a Memoizer for the provided Computable calculation.Memoizer
(Computable<I, O> computable, boolean recalculate) Constructs a Memoizer for the provided Computable calculation, with the option of whether a Computation that experiences an error should recalculate on subsequent calls or return the same cached exception.