@FunctionalInterface
public interface ThrowingTriConsumer<A,B,C,T extends java.lang.Throwable>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(A a,
B b,
C c) |
default ThrowingTriConsumer<A,B,C,T> |
after(ThrowingTriConsumer<A,B,C,T> other)
Executes the other consumer before this one.
|
default ThrowingTriConsumer<A,B,C,T> |
before(ThrowingTriConsumer<A,B,C,T> other)
Executes the other consumer after this one.
|
void accept(A a, B b, C c) throws T extends java.lang.Throwable
T extends java.lang.Throwabledefault ThrowingTriConsumer<A,B,C,T> before(ThrowingTriConsumer<A,B,C,T> other)
a.before(b); //a is executed before bother - The other consumer to executedefault ThrowingTriConsumer<A,B,C,T> after(ThrowingTriConsumer<A,B,C,T> other)
a.after(b); //b is executed before aother - The other consumer to execute