Class JobRecord

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String _rcsid  
      protected java.lang.Long jobID
      The job id.
      protected boolean wasStarted
      Whether this job was started or not
    • Constructor Summary

      Constructors 
      Constructor Description
      JobRecord​(java.lang.Long jobID)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Long getJobID()
      Get the job ID.
      void noteStarted()
      Note that the job was started.
      boolean wasStarted()
      Check whether job was started.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • jobID

        protected final java.lang.Long jobID
        The job id.
      • wasStarted

        protected boolean wasStarted
        Whether this job was started or not
    • Constructor Detail

      • JobRecord

        public JobRecord​(java.lang.Long jobID)
        Constructor.
    • Method Detail

      • getJobID

        public java.lang.Long getJobID()
        Get the job ID.
        Returns:
        the id.
      • noteStarted

        public void noteStarted()
        Note that the job was started.
      • wasStarted

        public boolean wasStarted()
        Check whether job was started.
        Returns:
        true if started.