priority property

  1. @TagNumber(3)
Int64 get priority

Priority of the Job. The valid value range is [0, 100). Default value is 0. Higher value indicates higher priority. A job with higher priority value is more likely to run earlier if all other requirements are satisfied.

Implementation

@$pb.TagNumber(3)
$fixnum.Int64 get priority => $_getI64(2);
  1. @TagNumber(3)
set priority (Int64 v)

Implementation

@$pb.TagNumber(3)
set priority($fixnum.Int64 v) { $_setInt64(2, v); }