You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 runningThread.sleep
first -- hence yet another usecase for reimplementing thread scheduling (see also #209 and #210).The text was updated successfully, but these errors were encountered: