Package com.day.crx
Interface RepositoryLifecycleListener
public interface RepositoryLifecycleListener
Lifecycle listener interface for repository startup and shutdown.
-
Method Summary
Modifier and TypeMethodDescriptionvoidshutdown(Repository repository) Called when a repository has been completely shut down.voidshuttingDown(Repository repository) Called when a repository is about to be shut down.voidstarted(Repository repository) Called when a repository has been fully started.
-
Method Details
-
started
Called when a repository has been fully started.- Parameters:
repository- repository that has been fully started.
-
shuttingDown
Called when a repository is about to be shut down.- Parameters:
repository- repository that is about to be shut down
-
shutdown
Called when a repository has been completely shut down.- Parameters:
repository- repository that has been shut down.
-