Job class abstract

Job

Properties:

  • id - The unique id of the job
  • type - The type of job
  • createAt - The time at which the job was created
  • startAt - The time at which the job was started
  • lastActivityAt - The last time at which the job had activity
  • status - The status of the job
  • progress - The progress (as a percentage) of the job
  • data - A freeform data field containing additional information about the job

Constructors

Job([void updates(JobBuilder b)])
factory

Properties

createAt int?
The time at which the job was created
no setter
data → JsonObject?
A freeform data field containing additional information about the job
no setter
hashCode int
The hash code for this object.
no setterinherited
id String?
The unique id of the job
no setter
lastActivityAt int?
The last time at which the job had activity
no setter
progress int?
The progress (as a percentage) of the job
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startAt int?
The time at which the job was started
no setter
status String?
The status of the job
no setter
type String?
The type of job
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
rebuild(dynamic updates(JobBuilder)) Job
Rebuilds the instance.
inherited
toBuilder() JobBuilder
Converts the instance to a builder B.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

serializer → Serializer<Job>
no setter