Interface FragileConsumer<T,E extends java.lang.Throwable>
- 
- Type Parameters:
- T- the type of the input to the operation
- E- the type of- Throwablewhich may be thrown
 
 public interface FragileConsumer<T,E extends java.lang.Throwable>AConsumerwhich can throw aThrowable
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T t)Performs this operation on the given argument.default FragileConsumer<T,E>andThen(FragileConsumer<? super T,E> after)Returns a composedFragileConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T> java.util.function.Consumer<T>wrap(FragileConsumer<T,java.lang.Exception> throwingConsumer)
 
- 
- 
- 
Method Detail- 
acceptvoid accept(T t) throws E extends java.lang.Throwable Performs this operation on the given argument.
 - 
andThendefault FragileConsumer<T,E> andThen(FragileConsumer<? super T,E> after) Returns a composedFragileConsumerthat performs, in sequence, this operation followed by theafteroperation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, theafteroperation will not be performed.- Parameters:
- after- the operation to perform after this operation
- Returns:
- a composed FragileConsumerthat performs in sequence this operation followed by theafteroperation
- Throws:
- java.lang.NullPointerException- if- afteris null
 
 - 
wrapstatic <T> java.util.function.Consumer<T> wrap(FragileConsumer<T,java.lang.Exception> throwingConsumer) 
 
- 
 
-