Package io.quarkus.dev.spi
Interface HotReplacementSetup
-
public interface HotReplacementSetupService interface that is used to abstract away the details of how hot deployment is performed
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()default voidhandleFailedInitialStart()This method is called if the app fails to start the first time.voidsetupHotDeployment(HotReplacementContext context)
-
-
-
Method Detail
-
setupHotDeployment
void setupHotDeployment(HotReplacementContext context)
-
handleFailedInitialStart
default void handleFailedInitialStart()
This method is called if the app fails to start the first time. This allows for hot deployment providers to still start, and provide a way for the user to recover their app
-
close
default void close()
-
-