Package org.nuxeo.ecm.core.bulk
Class BulkComponent.ComponentListener
- java.lang.Object
-
- org.nuxeo.ecm.core.bulk.BulkComponent.ComponentListener
-
- All Implemented Interfaces:
ComponentManager.Listener
- Enclosing class:
- BulkComponent
protected class BulkComponent.ComponentListener extends Object implements ComponentManager.Listener
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ComponentListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterStart(ComponentManager mgr, boolean isResume)
Called just after all components were startedvoid
beforeStop(ComponentManager mgr, boolean isStandby)
Called just before stopping components.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.runtime.model.ComponentManager.Listener
afterActivation, afterDeactivation, afterStop, beforeActivation, beforeDeactivation, beforeStart, install, uninstall
-
-
-
-
Method Detail
-
afterStart
public void afterStart(ComponentManager mgr, boolean isResume)
Description copied from interface:ComponentManager.Listener
Called just after all components were started- Specified by:
afterStart
in interfaceComponentManager.Listener
isResume
- true if the event was initiated by aComponentManager.resume()
call, false otherwise.
-
beforeStop
public void beforeStop(ComponentManager mgr, boolean isStandby)
Description copied from interface:ComponentManager.Listener
Called just before stopping components.- Specified by:
beforeStop
in interfaceComponentManager.Listener
isStandby
- true if the event was initiated by aComponentManager.standby()
call, false otherwise
-
-