Interface IPipelineStage<T>
- Type Parameters:
T- pipeline context type
- All Superinterfaces:
Predicate<T>
- All Known Implementing Classes:
Pipeline
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated(since="3.0.0")
@FunctionalInterface
public interface IPipelineStage<T>
extends Predicate<T>
Deprecated.
A logical step in the pipeline. Typically an action to be executed.
- Since:
- 1.5.0
-
Method Summary
-
Method Details
-
test
Deprecated. -
execute
Deprecated.Executes this pipeline stage. Implementors are encouraged to throwPipelineExceptionupon errors.- Parameters:
context- pipeline context- Returns:
- whether to continue pipeline execution or stop (
trueto continue).
-
Predicateinstead.