Uses of Interface
org.wildfly.clustering.function.Supplier
-
Uses of Supplier in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as SupplierMethods in org.wildfly.clustering.function that return SupplierModifier and TypeMethodDescriptionstatic <T> Supplier<T> Returns a supplier that delegates to the specified caller using the specified exception handler.static <T> Supplier<T> Supplier.empty()Returns a supplier that always returns the specified value.Supplier.handle(Function<RuntimeException, T> handler) Returns a new supplier that delegates to this supplier using the specified exception handler.default <V> Supplier<V> Returns a supplier that returns the value this function mapped via the specified function.static <T> Supplier<T> Supplier.of(T value) Returns a supplier that always returns the specified value.static <T> Supplier<T> Returns a supplier that returns null after invoking the specified task.Methods in org.wildfly.clustering.function with parameters of type SupplierModifier and TypeMethodDescriptionstatic <T> Callable<T> Callable.exceptional(Supplier<? extends Exception> exceptionProvider) Returns a callable that throws the provided exception.static <T> Callable<T> Returns a callable that delegates to the specified supplier.static <T,U> BooleanSupplier BooleanSupplier.of(BiPredicate<T, U> predicate, Supplier<T> formerSupplier, Supplier<U> latterSupplier) Returns a boolean supplier that evaluates a predicate against a supplied value.static <T> BooleanSupplierReturns a boolean supplier that evaluates a predicate against a supplied value.