Package org.apache.cxf.buslifecycle
Interface BusLifeCycleListener
- All Known Subinterfaces:
- BusLifeCycleManager
- All Known Implementing Classes:
- CXFBusLifeCycleManager,- DelayedCachedOutputStreamCleaner,- ServerRegistryImpl
public interface BusLifeCycleListener
The listener interface for receiving notification of 
Bus
 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 the
 BusLifeCycleManager interface.- 
Method SummaryModifier and TypeMethodDescriptionvoidInvoked when theBushas been initialized.voidInvoked after theBusis shutdown.voidInvoked before theBusis shutdown.
- 
Method Details- 
initCompletevoid initComplete()Invoked when theBushas been initialized.
- 
preShutdownvoid preShutdown()Invoked before theBusis shutdown.
- 
postShutdownvoid postShutdown()Invoked after theBusis shutdown.
 
-