priority property
- @TagNumber.new(3)
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);
- @TagNumber.new(3)
Implementation
@$pb.TagNumber(3)
set priority($fixnum.Int64 v) {
$_setInt64(2, v);
}