A functional interface for defining ad-hoc steps. @see Stage#$(String, StepFunction) @param the stage in which this step is executed @since 0.7.1
| 8 | * @since 0.7.1 |
| 9 | */ |
| 10 | public interface StepFunction<STAGE> { |
| 11 | |
| 12 | public void apply( STAGE stage ) throws Exception; |
| 13 | } |
no outgoing calls
no test coverage detected