Package io.smallrye.common.function
Interface ExceptionObjIntConsumer<T,E extends Exception>
-
- 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 ExceptionObjIntConsumer<T,E extends Exception>
A two-argument object and integer consumer which can throw an exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T t, int value)Performs this operation on the given arguments.default ExceptionObjIntConsumer<T,E>andThen(ExceptionObjIntConsumer<? super T,? extends E> after)default ExceptionObjIntConsumer<T,E>andThen(ExceptionObjLongConsumer<? super T,? extends E> after)default ExceptionObjIntConsumer<T,E>compose(ExceptionObjIntConsumer<? super T,? extends E> before)default ExceptionObjIntConsumer<T,E>compose(ExceptionObjLongConsumer<? super T,? extends E> before)
-
-
-
Method Detail
-
accept
void accept(T t, int value) throws E extends Exception
Performs this operation on the given arguments.
-
andThen
default ExceptionObjIntConsumer<T,E> andThen(ExceptionObjIntConsumer<? super T,? extends E> after)
-
compose
default ExceptionObjIntConsumer<T,E> compose(ExceptionObjIntConsumer<? super T,? extends E> before)
-
andThen
default ExceptionObjIntConsumer<T,E> andThen(ExceptionObjLongConsumer<? super T,? extends E> after)
-
compose
default ExceptionObjIntConsumer<T,E> compose(ExceptionObjLongConsumer<? super T,? extends E> before)
-
-