Uses of Interface
org.infinispan.util.function.TriConsumer
-
Packages that use TriConsumer Package Description org.infinispan.manager Cache manager API. -
-
Uses of TriConsumer in org.infinispan.manager
Methods in org.infinispan.manager with parameters of type TriConsumer Modifier and Type Method Description <V> CompletableFuture<Void>
ClusterExecutor. submitConsumer(Function<? super EmbeddedCacheManager,? extends V> callable, TriConsumer<? super Address,? super V,? super Throwable> triConsumer)
Submits the given command to the desired nodes and allows for handling of results as they return.default <V> CompletableFuture<Void>
ClusterExecutor. submitConsumer(SerializableFunction<? super EmbeddedCacheManager,? extends V> callable, TriConsumer<? super Address,? super V,? super Throwable> triConsumer)
The same asClusterExecutor.submitConsumer(Function, TriConsumer)
, except the Callable must also implement Serializable.
-