Package org.opends.server.api
Interface ServerShutdownListener
-
- All Known Implementing Classes:
DiskSpaceMonitor
,IdleTimeLimitThread
,JmxConnectionHandler
,LDAPConnectionHandler
,LDAPReplicationDomain
,ReferentialIntegrityPlugin
@PublicAPI(stability=VOLATILE, mayInstantiate=false, mayExtend=true, mayInvoke=false) public interface ServerShutdownListener
This interface defines a method that may be used to notify various Directory Server components that the server is shutting down.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processServerShutdown(LocalizableMessage reason)
Indicates that the Directory Server has received a request to stop running and that this shutdown listener should take any action necessary to prepare for it.
-
-
-
Method Detail
-
processServerShutdown
void processServerShutdown(LocalizableMessage reason)
Indicates that the Directory Server has received a request to stop running and that this shutdown listener should take any action necessary to prepare for it.- Parameters:
reason
- The human-readable reason for the shutdown.
-
-