BiConsumer | API reference | Android Developers (original) (raw)
@FunctionalInterface interface BiConsumer<T : Any!, U : Any!>
Represents an operation that accepts two input arguments and returns no result. This is the two-arity specialization of [Consumer](/reference/kotlin/java/util/function/Consumer). Unlike most other functional interfaces, BiConsumer is expected to operate via side-effects.
This is a functional interface whose functional method is [accept(java.lang.Object,java.lang.Object)](#accept%28java.util.function.BiConsumer.T,%20java.util.function.BiConsumer.U%29).
Summary
| Public methods | |
|---|---|
| abstract Unit | accept(t: T, u: U) Performs this operation on the given arguments. |
| open BiConsumer<T, U>! | andThen(after: BiConsumer<in T, in U>!) Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation. |
Public methods
accept
abstract fun accept(
t: T,
u: U
): Unit
Performs this operation on the given arguments.
| Parameters | |
|---|---|
| t | T: the first input argument |
| u | U: the second input argument |
andThen
open fun andThen(after: BiConsumer<in T, in U>!): BiConsumer<T, U>!
Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after operation will not be performed.
| Parameters | |
|---|---|
| after | BiConsumer<in T, in U>!: the operation to perform after this operation |
| Return | |
|---|---|
| BiConsumer<T, U>! | a composed BiConsumer that performs in sequence this operation followed by the after operation |
| Exceptions | |
|---|---|
| java.lang.NullPointerException | if after is null |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.