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 void
onEngineBuilt
(Engine engine) Called right after the engine has been built.default void
onEngineClosed
(Engine engine) Called right after the engine has been closed.void
onProcessEngineBuilt
(ProcessEngine processEngine) Called right after the process-engine has been built.void
onProcessEngineClosed
(ProcessEngine processEngine) Called right after the process-engine has been closed.
-
Method Details
-
onEngineBuilt
Description copied from interface:EngineLifecycleListener
Called right after the engine has been built.- Specified by:
onEngineBuilt
in interfaceEngineLifecycleListener
-
onEngineClosed
Description copied from interface:EngineLifecycleListener
Called right after the engine has been closed.- Specified by:
onEngineClosed
in 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
-