Interface CheckedBiConsumer<T,U,E extends Exception>

Type Parameters:
T - the type of the first argument to the operation.
U - the type of the second argument to the operation.
E - the type of checked exception the operation might throw.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface CheckedBiConsumer<T,U,E extends Exception>
Represents an operation that accepts two input arguments and returns no result, but can throw a checked exception. This is the two-arity specialization of CheckedConsumer. Unlike most other functional interfaces, BiConsumer is expected to operate via side-effects.

This is a functional interface whose functional method is accept(Object, Object).

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T input1, U input2)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(T input1, U input2) throws E
      Performs this operation on the given arguments.
      Parameters:
      input1 - the first input argument.
      input2 - the second input argument.
      Throws:
      E - if an error occurs.