Interface ProcessingBiConsumer<T,​U>

Type Parameters:
T - The type of the first input argument.
U - The type of the second input argument.
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 ProcessingBiConsumer<T,​U>
A consumer of data to be processed, which can throw a checked ProcessingException.
Author:
Alejandro González García
See Also:
BiConsumer
  • Method Summary

    Modifier and Type Method Description
    void accept​(T t, U u)
    Performs the processing operation on the given arguments.