| io.reactivex.functions.BiConsumer<T1, T2> | 
A functional interface (callback) that accepts two values (of possibly different types).
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract void | accept(T1 t1, T2 t2) Performs an operation on the given values. | ||||||||||
Performs an operation on the given values.
| t1 | the first value | 
|---|---|
| t2 | the second value | 
| Exception | on error | 
|---|