Uses of Interface
org.apache.flink.util.function.ThrowingConsumer
-
Packages that use ThrowingConsumer Package Description org.apache.flink.api.common.state.v2 org.apache.flink.util.function -
-
Uses of ThrowingConsumer in org.apache.flink.api.common.state.v2
Methods in org.apache.flink.api.common.state.v2 with parameters of type ThrowingConsumer Modifier and Type Method Description StateFuture<Void>StateFuture. thenAccept(ThrowingConsumer<? super T,? extends Exception> action)Returns a new StateFuture that, when this future completes normally, is executed with this future's result as the argument to the supplied action. -
Uses of ThrowingConsumer in org.apache.flink.util.function
Methods in org.apache.flink.util.function with parameters of type ThrowingConsumer Modifier and Type Method Description static <A> java.util.function.Consumer<A>ThrowingConsumer. unchecked(ThrowingConsumer<A,?> throwingConsumer)Convert aThrowingConsumerinto aConsumer.
-