Package org.commonjava.indy.action
Interface BootupAction
-
- All Superinterfaces:
IndyLifecycleAction
public interface BootupAction extends IndyLifecycleAction
Performs some sort of service/subsystem bootup just before Indy is preparing to run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBootPriority()Used to sort the actions, with highest priority executing first.voidinit()Initialize some subsystem before migration actions start.-
Methods inherited from interface org.commonjava.indy.action.IndyLifecycleAction
getId
-
-
-
-
Method Detail
-
init
void init() throws IndyLifecycleException
Initialize some subsystem before migration actions start.- Throws:
IndyLifecycleException
-
getBootPriority
int getBootPriority()
Used to sort the actions, with highest priority executing first. Priority should generally be between 1-100.
-
-