Class RegistryJobQueue

java.lang.Object
org.mapfish.print.servlet.job.impl.RegistryJobQueue
All Implemented Interfaces:
JobQueue

public class RegistryJobQueue extends Object implements JobQueue
Job Queue that uses Registry.
  • Constructor Details

    • RegistryJobQueue

      public RegistryJobQueue()
  • Method Details

    • getTimeToKeepAfterAccessInMillis

      public final long getTimeToKeepAfterAccessInMillis()
      Description copied from interface: JobQueue
      Return the amount of time the queue will keep an entry before purging the record.
      Specified by:
      getTimeToKeepAfterAccessInMillis in interface JobQueue
      Returns:
      the number of milliseconds between the last access of a record and the time when a record can be purged from the registry. -1 if there it is unlimited.
    • add

      public final void add(PrintJobEntry jobEntry)
      Description copied from interface: JobQueue
      Add new job entry to the queue.
      Specified by:
      add in interface JobQueue
      Parameters:
      jobEntry - the job to run.
    • start

      public final void start(String referenceId) throws NoSuchReferenceException
      Description copied from interface: JobQueue
      Mark job as running.
      Specified by:
      start in interface JobQueue
      Parameters:
      referenceId - reference id to the job to start.
      Throws:
      NoSuchReferenceException
    • done

      public final void done(String referenceId, PrintJobResult result) throws NoSuchReferenceException
      Description copied from interface: JobQueue
      Mark job as done.
      Specified by:
      done in interface JobQueue
      Parameters:
      referenceId - reference id to the job that is done.
      result - the result of the print job
      Throws:
      NoSuchReferenceException
    • cancel

      public final void cancel(String referenceId, String message, boolean forceFinal) throws NoSuchReferenceException
      Description copied from interface: JobQueue
      Mark job as canceling (if running) or canceled (if waiting / finished).
      Specified by:
      cancel in interface JobQueue
      Parameters:
      referenceId - reference id to the job that has failed.
      message - the error message
      forceFinal - finalize, even if status is running
      Throws:
      NoSuchReferenceException
    • fail

      public final void fail(String referenceId, String message) throws NoSuchReferenceException
      Description copied from interface: JobQueue
      Mark job as failed.
      Specified by:
      fail in interface JobQueue
      Parameters:
      referenceId - reference id to the job that has failed.
      message - the error message
      Throws:
      NoSuchReferenceException
    • getNumberOfRequestsMade

      public final long getNumberOfRequestsMade()
      Description copied from interface: JobQueue
      Get the total number of print requests made.
      Specified by:
      getNumberOfRequestsMade in interface JobQueue
    • timeSinceLastStatusCheck

      public final long timeSinceLastStatusCheck(String referenceId)
      Description copied from interface: JobQueue
      Get the time since a client has last requested the print job.
      Specified by:
      timeSinceLastStatusCheck in interface JobQueue
      Parameters:
      referenceId - the id of the print job
    • getAverageTimeSpentPrinting

      public final long getAverageTimeSpentPrinting()
      Description copied from interface: JobQueue
      Get the average time print jobs take to complete.
      Specified by:
      getAverageTimeSpentPrinting in interface JobQueue
    • getLastPrintCount

      public final long getLastPrintCount()
      Description copied from interface: JobQueue
      Get the number of prints that finished (either by error or success).
      Specified by:
      getLastPrintCount in interface JobQueue
    • getWaitingJobsCount

      public final long getWaitingJobsCount()
      Description copied from interface: JobQueue
      Get the total number of waiting/running jobs.
      Specified by:
      getWaitingJobsCount in interface JobQueue
    • get

      public final PrintJobStatusImpl get(String referenceId, boolean external) throws NoSuchReferenceException
      Description copied from interface: JobQueue
      Return the completed job object if the job has completed or absent otherwise.
      Specified by:
      get in interface JobQueue
      Parameters:
      referenceId - the referenceId of the report to lookup
      external - true if external status request
      Throws:
      NoSuchReferenceException
    • cancelOld

      public final void cancelOld(long startTimeOut, long abandonTimeout, String message)
      Description copied from interface: JobQueue
      Cancel old WAITING tasks.
      Specified by:
      cancelOld in interface JobQueue
      Parameters:
      startTimeOut - time-out value from when job started
      abandonTimeout - time-out value form last status request
      message - error message
    • start

      public final List<? extends PrintJobStatus> start(int number)
      Description copied from interface: JobQueue
      Start the next [N] number of jobs at once.
      Specified by:
      start in interface JobQueue
      Parameters:
      number - the number of jobs to start
      Returns:
      the jobs that were just started
    • toCancel

      public final List<? extends PrintJobStatus> toCancel()
      Description copied from interface: JobQueue
      Get the jobs that are marked as "CANCELING" and must be canceled.
      Specified by:
      toCancel in interface JobQueue
    • delete

      public void delete(String referenceId)
      Description copied from interface: JobQueue
      Delete the job.
      Specified by:
      delete in interface JobQueue
      Parameters:
      referenceId - reference id to the job.