Package io.quarkus.deployment.dev
Interface DevModeListener
-
public interface DevModeListenerSPI 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 intDEFAULT_ORDER
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidafterFirstStart(RunningQuarkusApplication application)voidbeforeShutdown()default intorder()Determines the order with which the listeners are executed.
-
-
-
Field Detail
-
DEFAULT_ORDER
static final int DEFAULT_ORDER
- See Also:
- Constant Field Values
-
-
Method Detail
-
afterFirstStart
void afterFirstStart(RunningQuarkusApplication 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)
-
-