posted 6 years ago
Hi guys, I need to implement Task Execution manager which will perform some task asynchronously, not in same period of time (Using @Scheduled is bad idea (time to execute should be set dynamically))!
I was thinking of implementing ThreadPoolExecution in each pool i can store one Job, but how to make this work together? I am restricted of using Quartz.
I need to implement mail service,running as background process in my web-app, which will send portion of mails asynchronously (assuming a notification for some meeting (time quota will be already set)). I will be very grateful if you give me some advice.