The MP FT @Asynchronous annotation allows easily running a method on a thread pool. (Better name would be something like @ThreadOffload.)
In quarkusio/quarkus#10790, we agreed it would be good to add support for delaying the method execution (using an extra annotation such as @Delayed). Obviously this shouldn't mean just running Thread.sleep first -- hence yet another usecase for reimplementing thread scheduling (see also #209 and #210).
The MP FT
@Asynchronousannotation allows easily running a method on a thread pool. (Better name would be something like@ThreadOffload.)In quarkusio/quarkus#10790, we agreed it would be good to add support for delaying the method execution (using an extra annotation such as
@Delayed). Obviously this shouldn't mean just runningThread.sleepfirst -- hence yet another usecase for reimplementing thread scheduling (see also #209 and #210).