Package org.apache.cxf.buslifecycle
Interface BusLifeCycleListener
-
- All Known Subinterfaces:
BusLifeCycleManager
- All Known Implementing Classes:
CXFBusLifeCycleManager
,DelayedCachedOutputStreamCleaner
,OSGIBusListener
,ServerRegistryImpl
public interface BusLifeCycleListener
The listener interface for receiving notification ofBus
lifecycle events. A class that implements this interface will have its methods called when the associated lifecycle events occur. An implementing class must register itself with the Bus through theBusLifeCycleManager
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initComplete()
Invoked when theBus
has been initialized.void
postShutdown()
Invoked after theBus
is shutdown.void
preShutdown()
Invoked before theBus
is shutdown.
-