schedule « grails « Java Enterprise Q&A





1. Multiple scheduler with Grails Quartz plugin    stackoverflow.com

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 ...

2. Grails Quartz - Jobs are running even when nothing is scheduled    stackoverflow.com

I have defined a job as follows in the jobs folder in grails:

class TransferFilesQueueJob {

  def execute() {
    print "File Transfer Job start!"
    FileTransfer.transferFilesToHere()
 ...