Interface Lifecycle


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

    Modifier and Type
    Method
    Description
    void
    Called when the application is shutting down and after request processing has ceased.
    void
    Called when the application is starting up and before request processing has commenced.
  • Method Details

    • 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.