Package org.flowable.engine
Interface ProcessEngineLifecycleListener
- All Superinterfaces:
EngineLifecycleListener
Interface describing a listener that gets notified when certain event occurs, related to the process-engine lifecycle it is attached to.
- Author:
- Frederik Heremans
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidonEngineBuilt(Engine engine) Called right after the engine has been built.default voidonEngineClosed(Engine engine) Called right after the engine has been closed.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 Details
-
onEngineBuilt
Description copied from interface:EngineLifecycleListenerCalled right after the engine has been built.- Specified by:
onEngineBuiltin interfaceEngineLifecycleListener
-
onEngineClosed
Description copied from interface:EngineLifecycleListenerCalled right after the engine has been closed.- Specified by:
onEngineClosedin interfaceEngineLifecycleListener
-
onProcessEngineBuilt
Called right after the process-engine has been built.- Parameters:
processEngine- engine that was built
-
onProcessEngineClosed
Called right after the process-engine has been closed.- Parameters:
processEngine- engine that was closed
-