Package org.apache.cxf.buslifecycle
Interface BusLifeCycleListener
- All Known Subinterfaces:
BusLifeCycleManager
- All Known Implementing Classes:
CXFBusLifeCycleManager
,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 Summary
Modifier and TypeMethodDescriptionvoid
Invoked when theBus
has been initialized.void
Invoked after theBus
is shutdown.void
Invoked before theBus
is shutdown.
-
Method Details
-
initComplete
void initComplete()Invoked when theBus
has been initialized. -
preShutdown
void preShutdown()Invoked before theBus
is shutdown. -
postShutdown
void postShutdown()Invoked after theBus
is shutdown.
-