Package dev.restate.sdk.common.function
Interface ThrowingBiConsumer<T,U>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ThrowingBiConsumer<T,U>LikeBiConsumerbut can throw checked exceptions.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T var1, U var2)default java.util.function.BiConsumer<T,U>asBiConsumer()static <T,U>
java.util.function.BiConsumer<T,U>wrap(ThrowingBiConsumer<T,U> fn)
-
-
-
Method Detail
-
wrap
static <T,U> java.util.function.BiConsumer<T,U> wrap(ThrowingBiConsumer<T,U> fn)
-
-