Interface AbstractProcessingStep.ProcessingConsumer<T>

Type Parameters:
T - The type of data to be processed.
All Known Implementing Classes:
AbstractProcessingStep.NullProcessingConsumer
Enclosing class:
AbstractProcessingStep
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 static interface AbstractProcessingStep.ProcessingConsumer<T>
A consumer of data to be processed, which can throw a checked ProcessingException.
Author:
Alejandro González García
See Also:
Consumer
  • Method Summary

    Modifier and Type Method Description
    void accept​(T t)
    Performs the processing operation on the given argument.