<@U10EJRH2L> The threads created in the executor s...
# tornadofx
e
@Ruckus The threads created in the executor service are not daemon threads like @carlw said, so they will prevent the jvm from shutting down if any of them are created. You can pass in a custom
ThreadFactory
as the second parameter to
newFixedThreadPool
and call
thread.t.setDaemon(true)
on each thread after you create them, then it will shut down nicely even if there are threads in the pool when you shut down.