T - type of argument,.@FunctionalInterface
public interface ConsumerRaisingIOE<T>
| Modifier and Type | Method | Description |
|---|---|---|
void |
accept(T t) |
Process the argument.
|
default ConsumerRaisingIOE<T> |
andThen(ConsumerRaisingIOE<? super T> next) |
after calling
accept(Object),
invoke the next consumer in the chain. |
void accept(T t) throws java.io.IOException
t - typejava.io.IOException - if neededdefault ConsumerRaisingIOE<T> andThen(ConsumerRaisingIOE<? super T> next)
accept(Object),
invoke the next consumer in the chain.next - next consumerCopyright © 2008–2025 Apache Software Foundation. All rights reserved.