Interface Lifecycle


  • public interface Lifecycle
    Extension point for services interested in responding to application startup and shutdown events.
    Author:
    cdivilly
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void shutdown()
      Called when the application is shutting down and after request processing has ceased.
      void startup()
      Called when the application is starting up and before request processing has commenced.
    • Method Detail

      • startup

        void startup()
        Called when the application is starting up and before request processing has commenced.
      • shutdown

        void shutdown()
        Called when the application is shutting down and after request processing has ceased.