maxRunDuration property

  1. @TagNumber.new(4)
Duration get maxRunDuration

Maximum duration the task should run. The task will be killed and marked as FAILED if over this limit.

Implementation

@$pb.TagNumber(4)
$10.Duration get maxRunDuration => $_getN(1);
  1. @TagNumber.new(4)
set maxRunDuration (Duration v)

Implementation

@$pb.TagNumber(4)
set maxRunDuration($10.Duration v) {
  setField(4, v);
}