Interface EventCallback<E extends Event>
-
- All Superinterfaces:
Consumer<E>
- All Known Implementing Classes:
EventStrategy.EventStrategyCallback
- 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 EventCallback<E extends Event> extends Consumer<E>
AConsumer
function definition for consumingEvent
objects raised fromStep
objects at the time of execution. It allows for actions to be triggered on eachStep
execution.- Author:
- Stephen Mallette (http://stephen.genoprime.com)