Package org.activiti.engine
Interface ProcessEngineLifecycleListener
-
@Internal public interface ProcessEngineLifecycleListener
Interface describing a listener that gets notified when certain event occurs, related to the process-engine lifecycle it is attached to.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonProcessEngineBuilt(ProcessEngine processEngine)Called right after the process-engine has been built.voidonProcessEngineClosed(ProcessEngine processEngine)Called right after the process-engine has been closed.
-
-
-
Method Detail
-
onProcessEngineBuilt
void onProcessEngineBuilt(ProcessEngine processEngine)
Called right after the process-engine has been built.- Parameters:
processEngine- engine that was built
-
onProcessEngineClosed
void onProcessEngineClosed(ProcessEngine processEngine)
Called right after the process-engine has been closed.- Parameters:
processEngine- engine that was closed
-
-