I have an application using Grails Quartz plugin. I need to have two jobs to have multiple instances running, but have separate limitation on number of threads to be used for ...
I have defined a job as follows in the jobs folder in grails:
class TransferFilesQueueJob { def execute() { print "File Transfer Job start!" FileTransfer.transferFilesToHere() ...