Package es.uvigo.esei.sing.textproc.step
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 Details
-
accept
Performs the processing operation on the given argument.- Parameters:
t
- The input argument.- Throws:
ProcessingException
-