Package hu.akarnokd.rxjava3.functions
Interface PlainBiConsumer<T1,T2>
-
- Type Parameters:
T1- the first argument typeT2- the second argument type
- All Superinterfaces:
BiConsumer<T1,T2>
public interface PlainBiConsumer<T1,T2> extends BiConsumer<T1,T2>
ABiConsumerwith suppressed exception on itsaccept(Object, Object)method.- Since:
- 0.18.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T1 t1, T2 t2)
-