public interface ConsumerX<T>
Consumer
,
except checked exceptions may be thrown.Abstract Method | |
---|---|
void |
accept(T t)
Like
Consumer.accept(T) , except checked exceptions may be thrown. |
Default Method | |
ConsumerX<T> |
then(ConsumerX<T> that)
Similar to
Consumer.andThen(java.util.function.Consumer) . |
void accept(T t) throws Exception
Consumer.accept(T)
, except checked exceptions may be thrown.Exception
default ConsumerX<T> then(ConsumerX<T> that)
Consumer.andThen(java.util.function.Consumer)
.