How to run infinite loop on vertx using while() loop
问题 I would like to run an infinite loop on verx on diff thread. Should be something like this: vertx.executeBlocking(future -> { while(true){ } //some logic (e.g waiting on blocking-code) } thing is that on vertx even for executeBlocking threads you have global timeout which you can increase. but I would like to set for this execution non-timeout warnings as it will run forever am I achieving my purpose right with vertx? In case 1 is true. how to exclude this specific blocking execution from the