Package org.commonjava.indy.action
Interface StartupAction
-
- All Superinterfaces:
IndyLifecycleAction
public interface StartupAction extends IndyLifecycleAction
Performs some sort of service/subsystem startup as Indy is preparing to run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetStartupPriority()Used to sort the actions, with highest priority executing first.voidstart()Start some service after migration actions are completed, just before Indy is ready for use.-
Methods inherited from interface org.commonjava.indy.action.IndyLifecycleAction
getId
-
-
-
-
Method Detail
-
start
void start() throws IndyLifecycleExceptionStart some service after migration actions are completed, just before Indy is ready for use.- Throws:
IndyLifecycleException
-
getStartupPriority
int getStartupPriority()
Used to sort the actions, with highest priority executing first. Priority should generally be between 1-100.
-
-