|
Hy there, I created a native quarkus application that runs as daemon in Linux. During startup several information of the system gets detected, that changes every now and then due to configuration changes. Now I tried to send a signal like I tried some research on the net, but couldn't find this kind of reload information - only the hot reload while being in dev mode. So - is this a thing? Is quarkus native capable of this? Do I have to activate it?! |
Answered by
dmlloyd
Jun 12, 2026
Replies: 1 comment 7 replies
|
I need to understand a bit more, you just want to "restart" the native app, is that it? @zakkak, do you know if native image handles this? |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could possibly use signals yourself in this way. The
SignalAPI is not a supported API in the JDK but in practice it's pretty much universal and it should work if you add a handler like this somewhere: