Class Job


  • public class Job
    extends Object
    Job Details for enqueued jobs.
    • Constructor Detail

      • Job

        public Job​(LocalDateTime availableAt,
                   String id,
                   LocalDateTime issuedAt,
                   String status,
                   Error error)
        Creates a new Job instance.
        Parameters:
        availableAt - The time at which the job finished.
        id - Identifier for the job.
        issuedAt - The time at which the job started.
        status - Job Status.
        error - Information about an error that occurred during the job processing.
      • Job

        public Job()
    • Method Detail

      • getAvailableAt

        public LocalDateTime getAvailableAt()
        The time at which the job finished.
      • getId

        public String getId()
        Identifier for the job.
      • getIssuedAt

        public LocalDateTime getIssuedAt()
        The time at which the job started.
      • getStatus

        public String getStatus()
        Job Status.
      • getError

        public Error getError()
        Information about an error that occurred during the job processing.
      • canEqual

        protected boolean canEqual​(Object other)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object