public interface

BiConsumer

io.reactivex.functions.BiConsumer<T1, T2>

Class Overview

A functional interface (callback) that accepts two values (of possibly different types).

Summary

Public Methods
abstract void accept(T1 t1, T2 t2)
Performs an operation on the given values.

Public Methods

public abstract void accept (T1 t1, T2 t2)

Performs an operation on the given values.

Parameters
t1 the first value
t2 the second value
Throws
Exception on error