Uses of Interface
org.wildfly.clustering.function.Runner
Packages that use Runner
Package
Description
-
Uses of Runner in org.wildfly.clustering.cache
Subinterfaces of Runner in org.wildfly.clustering.cacheModifier and TypeInterfaceDescriptioninterfaceUpdates a cache entry within the cache. -
Uses of Runner in org.wildfly.clustering.cache.infinispan
Classes in org.wildfly.clustering.cache.infinispan that implement RunnerModifier and TypeClassDescriptionclassAbstract mutator providing max-idle customization. -
Uses of Runner in org.wildfly.clustering.cache.infinispan.embedded
Classes in org.wildfly.clustering.cache.infinispan.embedded that implement RunnerModifier and TypeClassDescriptionclassMutator for a cache entry using a compute function.classMutates a given cache entry. -
Uses of Runner in org.wildfly.clustering.cache.infinispan.remote
Classes in org.wildfly.clustering.cache.infinispan.remote that implement RunnerModifier and TypeClassDescriptionclassMutator for a cache entry using a compute function.classMutates a given cache entry. -
Uses of Runner in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as RunnerModifier and TypeFieldDescriptionstatic final RunnerRunner.EMPTYA runner that performs no action.Methods in org.wildfly.clustering.function that return RunnerModifier and TypeMethodDescriptionstatic <T> RunnerReturns a runner that consumes a value from the specified supplier.static RunnerRunner.accept(DoubleConsumer consumer, DoubleSupplier supplier) Returns a runner that consumes a value from the specified supplier.static RunnerRunner.accept(IntConsumer consumer, IntSupplier supplier) Returns a runner that consumes a value from the specified supplier.static RunnerRunner.accept(LongConsumer consumer, LongSupplier supplier) Returns a runner that consumes a value from the specified supplier.default RunnerReturns a runner that runs the specified runner after running this runner.default RunnerReturns a runner that runs the specified runner before running this runner.static RunnerRunner.empty()Returns an empty runner.default RunnerRunner.handle(Consumer<RuntimeException> handler) Returns a new runnable that delegates to the specified handler in the event of an exception.static RunnerReturns a composite runner that runs the specified runners.default RunnerDoubleSupplier.thenAccept(DoubleConsumer consumer) Returns a runner that accepts the value returned by this supplier via the specified consumer.default RunnerIntSupplier.thenAccept(IntConsumer consumer) Returns a runner that accepts the value returned by this supplier via the specified consumer.default RunnerLongSupplier.thenAccept(LongConsumer consumer) Returns a runner that accepts the value returned by this supplier via the specified consumer.default RunnerSupplier.thenAccept(Consumer<T> consumer) Returns aRunnablethat consumes the supplied value.static RunnerRunner.throwing(Supplier<RuntimeException> exceptionProvider) Returns a runner that throws the provided runtime exception.