Interface DevModeListener


public interface DevModeListener
SPI that can be used by extensions that need to run code in various phases of dev mode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Executed after the first successfull application start.
    void
     
    default int
    Determines the order with which the listeners are executed.
  • Field Details

  • Method Details

    • afterFirstStart

      void afterFirstStart(RunningQuarkusApplication application)
      Executed after the first successfull application start.
      Parameters:
      application -
    • beforeShutdown

      void beforeShutdown()
    • order

      default int order()
      Determines the order with which the listeners are executed. Classes with a lower order are executed first during start (the order is reverse for shutdown)