@FunctionalInterface
public interface ExecInitializer
Modifier and Type | Method and Description |
---|---|
void |
init(Execution execution)
Called before the execution is started in order to perform any initialisation.
|
void init(Execution execution)
Implementations of this method typically add objects to the execution (as it's a registry).
This is called before ExecStarter.start(Action)
, but after ExecStarter.onStart(Action)
.
execution
- the execution that is about to be started.