taskCountPerNode property

  1. @TagNumber.new(10)
Int64 get taskCountPerNode

Max number of tasks that can be run on a VM at the same time. If not specified, the system will decide a value based on available compute resources on a VM and task requirements.

Implementation

@$pb.TagNumber(10)
$fixnum.Int64 get taskCountPerNode => $_getI64(6);
  1. @TagNumber.new(10)
set taskCountPerNode (Int64 v)

Implementation

@$pb.TagNumber(10)
set taskCountPerNode($fixnum.Int64 v) {
  $_setInt64(6, v);
}