Hello channel, is there a particular way to keep a JVM from shutting down? I am intentionally spawning a not-daemon thread in order to achieve that, but it looks like it always does shut
I am willing to sacrifice a Thread but to keep the main thread free, but JVM does not collaborate
solved, the main thread was exiting before the "waiting" thread was spawned
by putting a Thread/sleep I was able to wait for the spawning true to be running
very ugly